Info
This question is locked. 編集または回答するには再度開いてください。
Decision Branching, modification Script
89 ビュー (過去 30 日間)
古いコメントを表示
Modify the script so that the plotting code on lines 4-7 are executed only when doPlot is 1.
plot(density)
title("Sample Densities")
xticklabels(element)
ylabel("Density (g/cm^3)")
1 件のコメント
採用された回答
Dhruv G
2021 年 7 月 5 日
if doPlot
plot(density)
title("Sample Densities")
xticklabels(element)
ylabel("Density (g/cm^3)")
end
0 件のコメント
その他の回答 (0 件)
This question is locked.
参考
カテゴリ
Help Center および File Exchange で Geographic Plots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!