plot in matlab with custom colors

1 Ansicht (letzte 30 Tage)
Girish Kanika
Girish Kanika am 28 Mai 2018
Kommentiert: Girish Kanika am 29 Mai 2018
I have a data set mentioned below
I want to make a custom plot with respect to time showing different activities(starting,moving,stopping) with different colors. an anyone help me please
  2 Kommentare
Stephen23
Stephen23 am 28 Mai 2018
@Girish Kanika: please upload sample data (in a .mat file) by clicking the paperclip button.
"I want to make a custom plot with respect to time "
What kind of plot: a line plot, a scatter plot, a bar plot, ...? Which column contains the time data?
Girish Kanika
Girish Kanika am 28 Mai 2018
Bearbeitet: Girish Kanika am 28 Mai 2018
this is my matfile. i want to make line plot. time data is in first column. Can you help me please.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 28 Mai 2018
Bearbeitet: Ameer Hamza am 28 Mai 2018
You can use to plot the required graphs
c2 = splitapply(@(x) {x}, c(2:end,:), findgroups(c(2:end,end)));
titles = {'accX', 'accY', 'accZ', 'Average'};
for ii=1:4
f = figure;
ax = gca;
hold(ax);
title(titles{ii});
for jj=1:length(c2)
plot([c2{jj}{:,1}], [c2{jj}{:,ii+1}], 'DisplayName', c2{jj}{1,end})
end
legend()
end
  7 Kommentare
Ameer Hamza
Ameer Hamza am 29 Mai 2018
plotAccelerationColouredByActivity(), is not a MATLAB built-in function. This function is part of the Sensor Data Analytics Webinar. In order to use that function, you will need to download and place in MATLAB path.
Girish Kanika
Girish Kanika am 29 Mai 2018
Thankyou So much got it now..
Regards
Girish

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Discrete Data Plots 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