good morning , how can i plot a histogram for this code?
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
Tl=exprnd(1:10); for l=1:10
Nl=(1./Tl)*60*15;
end histogram(Tl,Nl)
0 件のコメント
回答 (1 件)
KL
2017 年 10 月 29 日
It's a good morning to read some documentation too, https://de.mathworks.com/help/matlab/ref/histogram.html
Tl=exprnd(1:10);
Nl=(1./Tl)*60*15;
histogram(Nl)
0 件のコメント
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!