how can write this math

2 ビュー (過去 30 日間)
ali
ali 2011 年 11 月 22 日
1.how can write this 1/((s+1)^8)(s+2)^5 in matlab?
2.how can write Tangent line this 1/((s+1)^8)? please help me
  1 件のコメント
Chandra Kurniawan
Chandra Kurniawan 2011 年 11 月 22 日
Your 'tangent' argument in radians or degrees?
You can use tand if it's expressed in degrees.

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

回答 (1 件)

Walter Roberson
Walter Roberson 2011 年 11 月 22 日
My guess would be
fs = @(s) 1 / ((s + 1).^ 8 .* (s + 2).^5);
tans = @(s) tan(1/((s+1).^8);

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by