-
Notifications
You must be signed in to change notification settings - Fork 5
/
matrizes.py
60 lines (51 loc) · 1.48 KB
/
matrizes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
"""
Created on Wed Mar 27 09:51:13 2019
INSTITUTO FEDERAL DE EDUCAÇÃO, CIÊNCIA E TECNOLOGIA DO PÁRA - IFPA ANANINDEUA
@author:
Prof. Dr. Denis C. L. Costa
Discentes:
Heictor Alves de Oliveira Costa
Lucas Pompeu Neves
Grupo de Pesquisa:
Gradiente de Modelagem Matemática e
Simulação Computacional - GM²SC
Assunto:
Matrizes
Nome do sript: matrizes
Disponível em:
https://github.com/GM2SC/DEVELOPMENT-OF-MATHEMATICAL-METHODS-IN-
COMPUTATIONAL-ENVIRONMENT/blob/master/SINEPEM_2019/matrizes.py
"""
# Biblioteca: numpy
import numpy as np
print('')
print('=======================================')
# Construção de matrizes
# Matriz de Números Reais
print("Matriz de Números Reais")
A = np.array([[4.2, 6, 9.7],[8.1, 5, 2]])
print('Matriz A =')
print(A,"\n")
print('')
# Matriz de Números Complexos
print("Matriz com Números Complexos")
B = np.array([[4 + 2j, 6, 9],[8, 5 - 3j, 2]], dtype = complex)
print('Matriz B =')
print(B,"\n")
print('')
# Matriz Nula
print("Matriz Nula:")
C = np.zeros( (4,5) ) # Ordem 4 x 5
print('C =')
print(C, "\n")
print('')
# Matriz Identidade
print("Matriz Identidade")
D = np.identity(3,float) # 3ª Ordem
print('D =')
print(D,"\n")
print('')
print('=======================================')
print(' ')
print(' ---> Fim do Programa matrizes <---')