Is it possible to plot all combinations of parameters automatically?
Show older comments
Hi folks,
I am using regionprops to generate all the parameters to do with a binary mask.
Is there an automated way to generate plots of each of the combinations of these parameters? Such as area with orientation, circularity etc...
I've tried to do this manually but am worried I might have missed a combination!
5 Comments
KSSV
on 20 Sep 2022
You can run a loop, use hold on and plot.
Teshan Rezel
on 20 Sep 2022
KSSV
on 20 Sep 2022
figure
hold on
for i = 1:m
for j = 1:n
if i~=j
plot(myData{i}, myData{j});
end
end
end
end
Teshan Rezel
on 20 Sep 2022
Matt J
on 20 Sep 2022
I've tried the following but get the error below
I don't see where you've included the error.
Also, the reason I wanted to initially plot each graph seperately and not on the same plot was because of the scale of each graph being different
If you don't want them on the same plot, omit 'hold on'.
Answers (0)
Categories
Find more on Triangulations 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!