How this plot is drawn with given values?
1 回表示 (過去 30 日間)
古いコメントを表示
F1=0.1487
F2=0.9998
採用された回答
Image Analyst
2022 年 12 月 26 日
We don't know unless you give us the equation for F2. This is all we can do until you improve your question:
N = 10 : 10 : 100;
F1 = ones(1, length(N));
plot(N, F1, 'rs-', 'LineWidth', 2, 'MarkerSize', 8)
grid on;
fontSize = 18;
xlabel('N', 'fontSize', fontSize)
ylabel('F', 'fontSize', fontSize);
ylim([0, 1])
xlim([10, 100])
legend('F1', 'Location', 'Southwest')
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:
2 件のコメント
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!