From: Ana on
Hi guys,

If I have a function Z that gives me for eg. 1,2,3,4

And I want that every value of Z is multiplied by t for eg. 0.5

Can I write:
for n = 1:1:length(Z)
V = Z(:,n) *t
end

because it doesnt seem that it gives me the right values?? I cannot find the problem

thanks alot
Really appreciate any help

Ana