How to add all the curves in a single figure?
1 view (last 30 days)
Show older comments
Hello,
These are the Rpp curves plotted against time for different incident angles just like:
figure(4),
subplot(1,5,1);
plot(Out(:,1),time);
xlabel('Rpp')
ylabel('Time (ms)')
set(gca, 'ydir', 'reverse');
subplot(1,5,2);
plot(Out(:,10),time);
set(gca, 'ydir', 'reverse');
subplot(1,5,3);
plot(Out(:,20),time);
set(gca, 'ydir', 'reverse');
here Out is Rpp and (:,1) represents angle. I want to plott all the plots in one figure rather by using subplots... How I can change the figure code to get all these on figure?
Accepted Answer
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!