How to plot single row values of 2 .mat files with linear regression line through it
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Lokeswara reddy pamulapate
am 27 Feb. 2020
Kommentiert: Rik
am 3 Mär. 2020
I have a 2 datasets of .mat files which contain 1*418 matrix in both the .mat files how to plot the regression line for that. I have plottedd the scatter plot for it after that i couldnot able to proceed.
can any one help me.
Thank you.
0 Kommentare
Akzeptierte Antwort
Reshma Nerella
am 3 Mär. 2020
1 Kommentar
Rik
am 3 Mär. 2020
It is better practice to load the variables to a struct. Then it is clear where all the data is coming from.
S=load('SI_Aorta.mat');x=S.x;
S=load('SI_Femoral.mat');y=S.y;
poly = polyfit(x,y,n);% n is the order of polynomial
y_val = polyval(poly,x);% find estimated values of y using the polynomial(poly)
figure(1),clf(1)
plot(x,y,'.');
hold on
plot(x,y_val);
hold off
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Polynomials finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!