Search
[ a_0, a_1, a_2, … , a_n ]
[1, 1, -2 ]
[0, 1, 0,-1 ]
[0,1,2]
[0,1,2,0]
[1,2,0]
printPoly
printPoly( [ 1, 1, 0, -2] )
1 + x - 2x^3
printPoly( [ -2, 0, 0, -2, 0, 0, 0] )
-2 -2x^3
polyValue
polyValue([1,0,2], 4)
33
pole=[] f=open('pole.txt','r') for line in f: pole.append(list(map(int, line.split())))
printMatrix
multiVecMat(v,m)
None
m=[[0,0,1],[0,1,0],[1,0,0]] v=[2, 4, 6]
Implementujte následující funkce: