Info

此问题已关闭。 请重新打开它进行编辑或回答。

hello professionals plz help me why my code is not showing the value of kp2 and e

2 次查看(过去 30 天)
kp2=rand(10);
e=rand(10);
for i=1:length(50)
r=e(i)*dp-kp1*kp2(i)*(p-1);
if r==1
break;
end
end
Here dp , kp1 and p are previously calculated.in this code value come in fraction and it does not enter the for if loop...plz suggest me code.

回答(1 个)

Image Analyst
Image Analyst 2013-4-13
length of 50 is 1. So instead of this:
for i=1:length(50)
I think you meant this:
for i=1:50
This runs:
% Make up some scalars for the missing variables.
dp = 1;
kp1 = 1;
p = 10;
% Now run her code.
kp2=rand(10);
e=rand(10);
for i=1:50
r=e(i)*dp-kp1*kp2(i)*(p-1)
if r==1
break;
end
end

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by