queria montar uma matriz pra poder testar alguns algoritmos de determinantes, mas n sei como posso montar, tentei o segunte:
colunas = [176, 100, 130, 150, 175]
linhas = []
colunas.to_s
linhas.to_s
colunas[linhas]
puts colunas
saida:
$ ruby testes.rb
testes.rb:7:in []': no implicit conversion of Array into Integer (TypeError)
from testes.rb:7:in
'
queria ciar uma matriz quadrada, assim:
176, 100, 130, 150, 175
176, 100, 130, 150, 175
176, 100, 130, 150, 175
176, 100, 130, 150, 175
176, 100, 130, 150, 175