how con I find multiple root? in function like sin(x)?
Ältere Kommentare anzeigen
I want to make matrix of root
for example
syms x
eq(x) = sin(x) ==0;
I want to make matrix 'A' that include roots of sin(x)=0
like
A = [0, pi, 2*pi, 3*pi ..... 100*pi]
3 Kommentare
Alex Mcaulley
am 13 Jun. 2019
x = 0:pi:100*pi;
someRoots = fsolve(@sin,x);
kukhyun park
am 13 Jun. 2019
Alex Mcaulley
am 13 Jun. 2019
Take a look to this, maybe it solves your issue:
Antworten (0)
Kategorien
Mehr zu Symbolic Math Toolbox 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!