How do I plot this function A, i dont have syms so i need to plot it without that! Thanks!
1 view (last 30 days)
Show older comments
clear all
close all
clc
A = -.125*r+(1.125/r);
figure(1);
fplot(A)
0 Comments
Answers (1)
VBBV
on 9 Dec 2022
clear all
close all
A = @(r) -.125*r+(1.125/r);
figure(1);
fplot(A,[-5 5])
0 Comments
See Also
Categories
Find more on Surface and Mesh Plots 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!