Code following function?

1 visualizzazione (ultimi 30 giorni)
Jonathan Larsson
Jonathan Larsson il 30 Set 2019
Risposto: Walter Roberson il 30 Set 2019
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

Risposta accettata

Shubham Gupta
Shubham Gupta il 30 Set 2019
Try this:
z = zeros(size(y));
z(y>0) = 1;
z(y<0) = -1;

Più risposte (1)

Walter Roberson
Walter Roberson il 30 Set 2019
z = sign(y)
provided that y is real valued.

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by