how can i fix Error using sym/min (line 101)
이전 댓글 표시
%the effective depth for shear
de=((Aps.*fps.*dp)+(As.*fy.*ds))/((Aps.*fps)+(As.*fy));
dva=[(de-0.5*a) (0.9*de) (0.72*D)];
dv=min(dva);
Error using sym/min (line 101)
Input arguments must be convertible to floating-point numbers.
채택된 답변
추가 답변 (1개)
Sulaymon Eshkabilov
2021년 8월 13일
0 개 추천
It looks like one of your intoduced symbolic variables is defined to be class type of "char". Check all symbolic variables using whos to determine their class type.
댓글 수: 1
Walter Roberson
2021년 8월 13일
No, that would not lead to this circumstance. In R2018a time frame, you could get the error using
syms x y
min([x,y])
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!