g = @(x) x.^2; % Create your function for plotting. h = @(x) x.^2.5; %Create a second function. x = 1:.01:10; % Create the range for the functions. plot(x,g(x), ...
確定! 回上一頁