power of 10 problem

조회 수: 10 (최근 30일)
Ellen
Ellen 2023년 12월 3일
댓글: Dyuman Joshi 2023년 12월 3일
I am working on a script of a much older version of matlab. Figerd out with help of this community waht my problem is. I like to reproduce a diagram with new data. for the axis i have
axis([0.4 8.6 0 0.9]) % ymax is 0.9Mj = 0.9*10^6
But that is in Mj (times 10^6)
my code for the plot is:
bar(1:nos, kin_sector(j,:)/1e6,'FaceColor','none','EdgeColor',cc(j,:),'LineWidth',1.5)
When I change te limit of the y axis to 10000 The plot is what I want.
I assumme my r2023b matlab has a problem with: y= kin_sector(j,:)/1e6
because in the plot it only uses: kin_sector(j,:)
Is there a new way of writing the powers of 10? Ive seen for example 1e+06 but that didnot work either.
should I add an extra rule before plotting deviding the y data en use y in my plot?
what is the easiest way?
Kind regards Ellen
  댓글 수: 3
Ellen
Ellen 2023년 12월 3일
이동: Star Strider 2023년 12월 3일
The problem lies in the data import. found out that the values of for example pressure were imported as text and not as number. Because of that de values are wrong and dont fit the diagram.
Thnx for the support. Ik have tot check my csv.files
But learning a lot from this errors!
Ellen
Dyuman Joshi
Dyuman Joshi 2023년 12월 3일
Which function are you using to import the data?

댓글을 달려면 로그인하십시오.

채택된 답변

Star Strider
Star Strider 2023년 12월 3일
‘... values of for example pressure were imported as text and not as number
Use the str2double function to convert them to numbers.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by