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)
Show older comments
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!!
0 Comments
Accepted Answer
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)
0 Comments
More Answers (0)
See Also
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!