When using the Basic Fitting Interface on a figure with subplots in MATLAB, how can I specify which subplot I want to fit to?
Show older comments
I have created a figure with subplots using:
x = 1:10;
subplot(2,1,1), plot(x, x.^2)
subplot(2,1,2), plot(x, x.^3)
Then, I open the Basic Fitting Interface from the "Tools" menu.
I would like to be able to specify which subplot contains the data I want to fit.
Accepted Answer
More Answers (0)
Categories
Find more on Subplots 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!