Dot indexing is not supported for variables of this type.
3 ビュー (過去 30 日間)
古いコメントを表示
When I am running my code, I get a response that a built-in with syms is not running correctly.
syms F D l t w
% Stress
n_stress = F./(t.*w);
u_nstress = sqrt((diff(n_stress,F).*u_f).^2+(diff(n_stress,t).u_c).^2+(diff(n_stress,w).*u_c).^2)
Dot indexing is not supported for variables of this type.
Error in sym/subsref (line 909)
R_tilde = builtin('subsref',L_tilde,Idx);
Error in Carbon90 (line 29)
回答 (1 件)
Image Analyst
2022 年 9 月 27 日
diff(n_stress,t) is a vector. It does not have a u_c field. Perhaps you meant
diff(n_stress,t) .* u_c
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!