I'm trying to create a function and it's not working, I don't know what's wrong with it?

1 回表示 (過去 30 日間)
Marina Osorio
Marina Osorio 2021 年 10 月 29 日
回答済み: the cyclist 2021 年 10 月 29 日
function gx = g(x)
x1 = find(x <-pi);
gx(x1)=-1;
x2 = find(x>=-pi & x<=pi);
xs = x(x2);
gx(x2)=cos(xs);
x3 = find(x>pi);
gx(x3)=-1;
end
x=-2.*pi;0.01;2.*pi;
gx=g(x)
plot (x,gx)

回答 (1 件)

the cyclist
the cyclist 2021 年 10 月 29 日
You need
x=-2.*pi:0.01:2.*pi;
instead of using semicolons for defining the vector.

カテゴリ

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