how would i find a postive root
1 回表示 (過去 30 日間)
古いコメントを表示
func = @(x) tanh(2*x)/(2*x) = 0.7
0 件のコメント
回答 (1 件)
Giorgos Papakonstantinou
2015 年 3 月 4 日
Quickly you can do this:
func = @(x) tanh(2.*x)./(2.*x) -0.7
fzero(func, 1)
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!