- symbolic expressions
- symbolic functions
- function handles
Error Using fplot for plotting a function
14 views (last 30 days)
Show older comments
Teoman Selcuk
on 1 Nov 2021
Commented: Walter Roberson
on 1 Nov 2021
Without setting a xlim how would i be able to plot the function y according to its domain (-∞, 1]. I get an error whilst plotting the graph and the plot function prints the invalid params D: (-∞,∞) hencewhy I want to use the fplot function.
x = [-1.5:0.01:1.5];
y= -sqrt((1-x))+nthroot(x.^2,5);
fplot(x, y);
Error:
Error using fplot (line 149)
Invalid parameter '-0.4050...'.
0 Comments
Accepted Answer
Walter Roberson
on 1 Nov 2021
fplot() can be used for:
fplot() cannot be used for numeric vectors. You should use plot() for numeric vectors.
1 Comment
Walter Roberson
on 1 Nov 2021
x = [-1.5:0.001:1.5];
y = -sqrt((1-x))+nthroot(x.^2,5);
mask = imag(y) ~= 0 | real(y) > 1;
y(mask) = nan;
plot(x, y);
More Answers (0)
See Also
Categories
Find more on Symbolic Math Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!