Is multiplying a matrix or a constant with another constant and multiplying a const. with a variable which stores a constant different?
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!!
Accepted Answer
More Answers (0)
Categories
Find more on Logical 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!