how would i find a postive root
Mostrar comentarios más antiguos
func = @(x) tanh(2*x)/(2*x) = 0.7
Respuestas (1)
Giorgos Papakonstantinou
el 4 de Mzo. de 2015
Quickly you can do this:
func = @(x) tanh(2.*x)./(2.*x) -0.7
fzero(func, 1)
Categorías
Más información sobre Octave en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!