mfunction.m
function[P] = mfunction(v,M,R,T)
P=4*pi*(M/(2*pi*R*T)).^(3/2)*v.^2*exp((-M*(v.^2))/(2*R*T));
end
I want to make a graph. x would be v and the range is 1: 1200,
M = 0.032,R = 8.31, T= 300
and I want to plot y=mfunction(x)
and errors pop up. How can I draw a graph?