My graph is blank
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Kevin Chapman
el 30 de En. de 2019
Respondida: Star Strider
el 30 de En. de 2019
The function is n=(m-10)/m for 0(less thab or equal to)m(less than or equal to)5
>> m=0:0.1:5;
>> n=(m-10)/m;
>> plot(m,n);
0 comentarios
Respuesta aceptada
Star Strider
el 30 de En. de 2019
You need to use element-wise division:
m=0:0.1:5;
n=(m-10)./m;
plot(m,n);
Replace / with ./ (note the dot operator), and it works.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Discrete Fourier and Cosine Transforms 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!