2D plot of x*sin(1/x)
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
feeroz babu
el 15 de Dic. de 2020
Comentada: Stephen23
el 15 de Dic. de 2020
x = [-1/pi:0.01:1/pi];
y = x*(sin(1/x));
plot(x,y)
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 15 de Dic. de 2020
y = x.*(sin(1./x));
In MATLAB the * operator is algebraic matrix multiplication (inner product) and the / operator is matrix division (which is similar to matrix multiplication by pinv() of the array)
0 comentarios
Ver también
Categorías
Más información sobre Line Plots 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!