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!