multiple lines+ P-value

1 view (last 30 days)
Brave A
Brave A on 14 Apr 2019
Commented: Brave A on 17 Apr 2019
Hi there I have 2 languages to compare speed between them.
and I need to
1- plot 4 lines as my Y axis. and then for X axis I need every line in y related to the name in X axis.
2- add P- value to calculate it.
Here is my attempt thanls in advance for help and any suggestions are welcome in how to represent the data in a good way!
y1 = importdata('Crow700.txt');
figure
plot(y1)
hold on
set(gca,'xticklabel',x1.')
y2 = importdata('Ccol700.txt');
set(gca,'XTickLabel',{'Partial Row in C','Partial Column in C','Partial Row in Java', 'Partial Column in Java'})
plot(y2)
y3 = importdata('Javacol700.txt');
plot(y3)
y4 = importdata('Java700.txt');
plot(y4)
tt.jpg
I need like this figure.
  2 Comments
Brave A
Brave A on 15 Apr 2019
I missed my code I know that :(
would you please fix the code as you suggest.
Thanks in advance!

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 15 Apr 2019
y1 = importdata('Crow700.txt');
y2 = importdata('Ccol700.txt');
y3 = importdata('Javacol700.txt');
y4 = importdata('Java700.txt');
plot(1:length(y1), y1, 'k->', 1:length(y2), y2, 'k--v', 1:length(y3), y3, 'b->', 1:length(y4), y4, 'b--v')
legend({'Partial Row in C','Partial Column in C','Partial Row in Java', 'Partial Column in Java'})
  3 Comments
Brave A
Brave A on 17 Apr 2019
Sorry for inconvince issue .
I fixed the code and post it here.
thanks in advance

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!