Simple question regarding plot

2 Ansichten (letzte 30 Tage)
Sameer
Sameer am 9 Sep. 2014
Beantwortet: Ahmed am 9 Sep. 2014
Hello all
I have 2 set of data let say Given_data and Obtained_data now I want to draw first Given_data on x axis as red points and Obtained_data on y axis as blue points.
How that can be done?
Please Guide
  1 Kommentar
Geoff Hayes
Geoff Hayes am 9 Sep. 2014
Sameer - what do you mean by drawing the Given_data on x axis as red points and Obtained_data on y axis as blue points? If you want to plot both on the same set of axes in different colours, just do
figure;
plot(Given_data,'b.'); % plot in blue points
hold on;
plot(Obtained_data,'r.'); % plot in red points
The above will plot both sets of data points on the same axes in blue and red as required.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Ahmed
Ahmed am 9 Sep. 2014
Given_data = rand(10,1);
Obtained_data = rand(10,1);
plot(zeros(size(Given_data)),Given_data,'r+');
hold on
xlabel('Given_data');
plot(Obtained_data,zeros(size(Obtained_data)),'b+');
hold off
ylabel('Obtained_data');

Weitere Antworten (0)

Kategorien

Mehr zu Visual Exploration finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by