sprintf conflict in operations

조회 수: 3 (최근 30일)
Opariuc Andrei
Opariuc Andrei 2021년 3월 24일
댓글: Star Strider 2021년 3월 24일
receiving 5 values for Mt2b while using sprintf for Pmax (i used to to get an exact value without variables) .if i remove sprintf from Pmax i'm receiving 1 value as needed .The question being how can fix my result for Mt2b without having to remove sprintf from Pmax ?
Fa=88050;
E=2.1*10^5;
R=200;
r0=1.11*((Fa*R)/E)^(1/3)
Pmax=sprintf('%.0f\n',0.39*((Fa*E^2)/R^2)^(1/3))
Mt2b=sprintf('%.0f\n',((pi^2)/8)*0.2*Pmax*r0^3)

채택된 답변

Star Strider
Star Strider 2021년 3월 24일
To use ‘Pmax’ in a calculation, it has to be turned back into a number.
Try this:
Mt2b=sprintf('%.0f\n',((pi^2)/8)*0.2*str2double(Pmax)*r0^3)
producing:
Mt2b =
'50709
'
.
  댓글 수: 2
Opariuc Andrei
Opariuc Andrei 2021년 3월 24일
thx ,i'll write that down somewhere , for future reference :)
Star Strider
Star Strider 2021년 3월 24일
As always, my pleasure!
The online documentation reference is str2double

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by