Rational Numbers diving by 0
조회 수: 6 (최근 30일)
이전 댓글 표시
Hi
I show the result of each data ontop of a bar. I have it working. On top of each bar it shows of the rational of failure/measurements.
ratFailMeasurement=rats(Fail/Measurement);
if Fail is 0, then the answer is 0. this is what is shown on top of the bar. but I want that it shows 0/X-amountofmeasurements.
how to?
댓글 수: 0
채택된 답변
the cyclist
2013년 1월 4일
편집: the cyclist
2013년 1월 4일
I think you will probably have to convert to a string manually, to display it how you'd like. For example:
[num2str(0),'/',num2str(7)]
You can of course put variable names where I have put hard-coded numbers. You can also use the sprintf() function to have more precise control over the output format.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!