- タスク1: doPlotが1の場合はPlot画面が表示され、doPlotが0の場合は何も表示されない
- タスク2: doPlotが1の場合はPlot画面が表示され、doPlotが0の場合は”The density of (省略)”が表示される
13.2 判定分岐 タスク1,タスク2の結果の違いについて
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
佳奈子 浜口
am 14 Jun. 2021
Beantwortet: Atsushi Ueno
am 14 Jun. 2021
タスク1とタスク2の結果表示を何処を確認すれば異なるのかがわかりません.
if doPlot
plot(density)
title("Sample Densities")
xticklabels(element)
ylabel("Density (g/cm^3)")
end
if doPlot
plot(density)
title("Sample Densities")
xticklabels(element)
ylabel("Density (g/cm^3)")
else
disp("The density of " + element ...
+
0 Kommentare
Akzeptierte Antwort
Atsushi Ueno
am 14 Jun. 2021
doPlotが0になる場合と1になる場合の両方をみると違いがわかります。
doPlot = randi([0 1])
を含むタスクを何回か実行し続けて下さい。(セクションの実行ではなく、全体の実行をすればOKです)
繰り返し実行し続けたくなければ、
doPlot = 0 %またはdoPlot=1
に書き換えて実行してください
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu ライン プロット finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!