Plot 20*x*exp(x^2)/(1+60x^2) from x=(-3,3) in matlab asap
clc %clears the screen
clear all %clears the history
x=-3:0.01:3; %vector values for x
y=20*x.*exp(x.^2)./(1+60*x.^2); %vector values for y
plot(x,y); %plot y vs x
title('Plot of y vs x'); %give title
xlabel('X-values');
ylabel('Y-values');