get rid of e notation
조회 수: 2 (최근 30일)
이전 댓글 표시
how do i get rid of the e notation in a variable? eg 4.321e+003, i just need it as 4321. its stopping me from plotting a graph.
댓글 수: 0
채택된 답변
Walter Roberson
2011년 7월 12일
Sounds to me as if you have accidentally created a variable named "plot".
In the mean time, use round() on your data and see if you get a plot out. My guess is that you will not.
댓글 수: 7
Walter Roberson
2011년 7월 12일
What is "a" ? If it is an array, then a(z) would be attempting to subscript "a" by the values in "z".
If "a" is an array and you are expecting that "z" will work out as integral, then you might be experiencing floating point roundoff limitations; if so then a(round(z)) should work (unless some z rounds to zero.)
추가 답변 (2개)
Paulo Silva
2011년 7월 12일
No it's not stopping you unless the variable is a string instead of a number, please provide more details.
댓글 수: 3
Paulo Silva
2011년 7월 12일
something doesn't seem right, please provide the code and a sample of the data
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!