error in writing an equation

1 回表示 (過去 30 日間)
Kentman
Kentman 2014 年 7 月 25 日
回答済み: Wayne King 2014 年 7 月 25 日
Hello,
I was writing this equation in matlab:
y=(3sin(x)cos(x))/(sin3(x)+cos3(x)) % of course 3 means power)
so i wrote it normally like:
y= (3*sin(x)*cos(x))/((sin(x)^3)+(cos(x))^3)
and i got the error: error using m times..Inner matrix dimensions must agree.
although i changed the way of writing it like adding dot and changing parentheses. Where x=0:pi/100:pi/2
I hope you can help me with this.
Thank you.

採用された回答

Wayne King
Wayne King 2014 年 7 月 25 日
x = 0:.01:5;
y = (3*sin(x).*cos(x))./((sin(x).^3)+(cos(x)).^3);

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by