how would i find a postive root
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
func = @(x) tanh(2*x)/(2*x) = 0.7
0 Kommentare
Antworten (1)
Giorgos Papakonstantinou
am 4 Mär. 2015
Quickly you can do this:
func = @(x) tanh(2.*x)./(2.*x) -0.7
fzero(func, 1)
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!