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 CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by