Info
此问题已关闭。 请重新打开它进行编辑或回答。
could any one help me to find wt is the error in this code????
1 次查看(过去 30 天)
显示 更早的评论
xnetloc=[4 5 7 8]
ynetloc=[23 4 56 89];
syms x;
syms y;
syms r; rt=[x y];
r=[xnetloc;ynetloc];
N=4;
noOfratios=6;
s=5;%assumption bs hek mbd2yan 3shan elqanoon
for i=1:N
for j=1:N
E(i)=(s/(abs((rt-r(i,j)).^2))); end end
for i = 1:noOfratios
j = setdiff(1:noOfratios,i);
k(i,j)=E(i)/E(j);
end
for i = 1:noOfratios
j = setdiff(1:noOfratios,i);
c(i,j)=(r(i,2)-k(i,j)*r(j,2))/(1-k(i,j).^2);%centre coordinates
p(i,j)=k(i,j)*(abs(r(i,2)-r(j,2)))/(1-k(i,j).^2);
%radius coordinates
f=((x-c(i,1))^2)-((y-c(i,2))^2)-p(i)^2)
hold on
ezplot(f)
end
1 个评论
Walter Roberson
2011-4-1
Please go in to the editor and select your code and click on the 'Code {}' button, so as to reformat the code to be readable.
回答(2 个)
Sean de Wolski
2011-4-1
You have one too many parenthesis on this line:
f=((x-c(i,1))^2)-((y-c(i,2))^2)-p(i)^2)
1 个评论
Walter Roberson
2011-4-1
Your code
for i=1:N
for j=1:N
E(i)=(s/(abs((rt-r(i,j)).^2)));
end
end
Would have the same effect as
j = N;
for i = 1:N
E(i)=(s/(abs((rt-r(i,j)).^2)));
end
Are you sure that is what you intended?
1 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!