Can't sort this code
古いコメントを表示
The original question has been removed by the user.
4 件のコメント
Walter Roberson
2012 年 1 月 25 日
How is _what_ even possible?
Tom
2012 年 1 月 26 日
Jan
2012 年 1 月 26 日
Please take the time to formulate a complete question. Currently it is not clear, what the program does, if it fails or not, if it creates the wanted results, or if not, what the dfferences between the results and your expectations are.
Tom
2012 年 1 月 26 日
採用された回答
その他の回答 (2 件)
bym
2012 年 1 月 26 日
You do not have 2 lines on the graph: it goes from left to right & back again. After some noodling, I think you want to replace
Fn = sum(fnj);
%plot(AnRec,Fn)
pn = Fn*(M./(ar*N));
plot(xjRec,pn,'LineWidth',1.7)
with the following, which makes more sense (or at the very least presents more pleasing plots :) )
Fn = sum(fnj,2);
plot(AnRec,Fn)
figure
pn = Fn*(M./(ar*N));
plot(xjRec,pn,'LineWidth',1.7)
カテゴリ
ヘルプ センター および File Exchange で Logical についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!