Search
[ a_0, a_1, a_2, … , a_n ]
[1, 1, -2 ]
print_poly
print_poly( [ 1, 1, 0, -2] )
poly_value
poly_value([1,0,2], 4)
33
1+2*x^2=1+2*16=33
poly_multi
[0, 1, 2, 3]
[3, 2, 1, 0]
[2, 0, 1]
[1, 2, 0]
pole=[] f=open('pole.txt','r') for line in f: pole.append(list(map(int, line.split())))
print_matrix
multi_mat_vec(m, v)
None
m=[[0,0,1],[0,1,0],[1,0,0]] v=[2, 4, 6]
Implementujte následující úlohy:
/local/data/matrix.txt
Vstup:
1 1 2 5 6 1 5 6 8 5 6 7 11 12 10 12 11 11 8 10 5 6 7 9 6 5 10 12 15 19
Výstup:
1 2 3 4 2
argv[1]