sprintf conflict in operations
1 ビュー (過去 30 日間)
表示 古いコメント
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)
0 件のコメント
採用された回答
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
'
.
その他の回答 (0 件)
参考
カテゴリ
Find more on Adding custom doc in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!