Calculate the length of symbolic expression
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
T S Singh
am 18 Feb. 2020
Kommentiert: T S Singh
am 19 Feb. 2020
Hi,
I am trying to caculate the total length of a symbolic expression.
Eg.
syms x a b
df=x^2+2*a*b
I want to cacluale the length of 'df', in my case the answer should be nine (including operator).
I am using MATLAB 2015a.
Any help please.
0 Kommentare
Akzeptierte Antwort
KSSV
am 18 Feb. 2020
S = char(df) ; % convert sym to string
idx = strfind(s,' ') ; % get empty spaces
S(idx) = [] ; % remove the mepty spaces
iwant = length(S)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!