How to get z for different x
1 回表示 (過去 30 日間)
古いコメントを表示
x = [-2:0.1:2];
z=x.*(1-x).*(2-x).*(4-x)/((6-x)-(1-x).*(x-7));
I am getting error. Please correct my problem.
2 件のコメント
採用された回答
Wayne King
2012 年 12 月 18 日
編集済み: Wayne King
2012 年 12 月 18 日
x = [-2:0.1:2];
z = x.*(1-x).*(2-x)./((6-x).*(x-7));
You just forgot a ./
Now you should have a vector
x = [-2:0.1:2];
z = x.*(1-x).*(2-x)./((6-x).*(x-7));
plot(x,z)
その他の回答 (2 件)
Thomas
2012 年 12 月 18 日
x = [-2:0.1:2];
z=x.*(1-x).*(2-x).*(4-x)./((6-x)-(1-x).*(x-7))
You missed the . before the division to do element by element division
0 件のコメント
Daniel Shub
2012 年 12 月 18 日
Presumably you want to use ./ instead of /, just like you are using .* instead of *
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Numeric Types についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!