Add and Plot Vectors
07: Add and Plot vectors
Add two vectors (each of 7 elements), then plot the values of the resultu = (3,0,1,4,2,6,4)
v = (1,2,3,4,5,6,7)
plot w = u + v
| Mathematica:
u = |
Matlab:
u = [3,0,1,4,2,6,4] |
| Maple:
with(LinearAlgebra): |
IDL:
u = [3,0,1,4,2,6,4] |
