Hypobolic Tangent Function Question

I am a beginner with Matlab. I am trying to create a .m file that will plot a function for me. There are other parts to what I want to plot, but my problem is apparently something with plotting a hyperbolic tangent function that is in the denominator of a fraction. Here is a simplified version of my script:
y=-3:0.01:3; f=1/tanh(y) plot(y,f)
I keep getting an error on the second line. When I define other functions for "f" I get a plot, but I can't get the hyperbolic tangent function in the denominator to plot. Could someone please tell me what is wrong with my script?
Thanks, Allen

回答 (1 件)

Youssef  Khmou
Youssef Khmou 2013 年 10 月 13 日

0 投票

its easy to fix the error, vector computation is column wise :
y=-3:0.01:3; f=1./tanh(y); plot(y,f)

2 件のコメント

Allen
Allen 2013 年 10 月 13 日
That fixed my problem! Thank you!
Youssef  Khmou
Youssef Khmou 2013 年 10 月 13 日
if the problem is completely solved, you accept the answer .

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeMathematics についてさらに検索

製品

タグ

質問済み:

2013 年 10 月 13 日

コメント済み:

2013 年 10 月 13 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by