Plotting inside a function
2 views (last 30 days)
Show older comments
Seyifunmi Ayeni
on 1 Dec 2018
Commented: Walter Roberson
on 1 Dec 2018
unfortunately I can't post my code as it is over 300 lines long but it is more a plotting issue. My function works but when I do add fplot in my code like this:
function [Q] = code(L)
%function body
fplot(code(L), [1 5])
end
and when I ran my function I did code(1) assuming after it finished solving for 1 it will plot the graph but it has been only solving for 1 repeatedly.
Any advice.
0 Comments
Accepted Answer
Image Analyst
on 1 Dec 2018
That's because the (badly-named) function "code()" calls itself recursively!
That's why code() executes repeatedly.
4 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!