Code following function?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Jonathan Larsson
el 30 de Sept. de 2019
Respondida: Walter Roberson
el 30 de Sept. de 2019
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
0 comentarios
Respuesta aceptada
Shubham Gupta
el 30 de Sept. de 2019
Try this:
z = zeros(size(y));
z(y>0) = 1;
z(y<0) = -1;
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!