Code following function?

1 回表示 (過去 30 日間)
Jonathan Larsson
Jonathan Larsson 2019 年 9 月 30 日
回答済み: Walter Roberson 2019 年 9 月 30 日
d96321e3-c038-4569-a2ad-27a42f79936f.png
om = if
How do I code this function? The requirements are that z is a matrix. Thanks.
x=[1:0.01:10]
y=x-4*sin(2*x)-4

採用された回答

Shubham Gupta
Shubham Gupta 2019 年 9 月 30 日
Try this:
z = zeros(size(y));
z(y>0) = 1;
z(y<0) = -1;

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2019 年 9 月 30 日
z = sign(y)
provided that y is real valued.

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by