how can i fix Error using sym/min (line 101)
Ältere Kommentare anzeigen
%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 Kommentar
metasebia dabi
am 13 Aug. 2021
Akzeptierte Antwort
Weitere Antworten (1)
Sulaymon Eshkabilov
am 13 Aug. 2021
0 Stimmen
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 Kommentar
Walter Roberson
am 13 Aug. 2021
No, that would not lead to this circumstance. In R2018a time frame, you could get the error using
syms x y
min([x,y])
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!