plot a mathmatical function
1 view (last 30 days)
Show older comments
function is called that will plot a mathematical function in one variable and in range 0 to 10 and function should recive input vector of integer and it has n length even. for example func([100,1500,3000]) will plot that number of points
4 Comments
Answers (2)
Nicolas Douillet
on 25 Nov 2019
u = linspace(1500,3000,16); % since there are 16 values between 1500 and 3000 with a sampling step of 100
figure;
plot(u);
I am not sure this is what you want to do, since your question is not so clear to me.
Hope this could help you anyway.
Best,
N
0 Comments
Walter Roberson
on 25 Nov 2019
funstr = input('Enter expression in variable x ', 's');
fun = str2func(vectorize(funstr));
x = linspace(0,1,NumberOfPoints);
y = fun(x);
plot(x, y);
Now generalize this slightly to support multiple plots.
See Also
Categories
Find more on Elementary Math in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!