Is multiplying a matrix or a constant with another constant and multiplying a const. with a variable which stores a constant different?

1 view (last 30 days)
Respected Sirs, I have a loop running about 1000 times.I am using an equation like
while...
for i=1:3
x(i) = a(i) + a(i)*(b(:,i)).^1.2
end
end
and i'm getting some output, BUT when i use this form
b=1.2;
while...
for i=1:3
x(i) = a(i) + a(i)*(b(:,i)).^b
end
end
i get output as [NaN NaN]
why is it happening?? please help!!

Accepted Answer

per isakson
per isakson on 1 Mar 2014
Edited: per isakson on 1 Mar 2014
Here are some links on debugging in Matlab
.
BTW: b=1.2; overwrites the array b(:,i)

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!