¿Cómo dibujar este gráfico 2D en Matlab y cómo escribir el código? gracias a todos
>>?t=-2*pi:.1:2*pi;
>>?x=t.^2.*sin(t)-log(t +3);
>>?y=t.*cos(3*t)-exp(-t).*sin(t);
>>?plot( x,y).
>>?t=-2*pi:.1:2*pi;
>>?x=t.^2.*sin(t)-log(t +3);
>>?y=t.*cos(3*t)-exp(-t).*sin(t);
>>?plot( x,y).