Plotting the resual difference between two plots, example picture in the thread.
17 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi
Im doing data fitting and am interested in plotting a line from the data to the fitted curve, see wikipedia image.
Thats exactley what i want i just cant seem to plot the residuals like they have done.
This is my code
clear, clc
x = 0:pi/10:2*pi;
y = sin(x);
yx = random('ev',y,0.2);
plot(x,y,x,yx,'o'), axis([0-0.1 2*pi+0.1 min(yx)-0.1 max(yx)+0.1])
thanks
0 Commenti
Risposte (2)
Matt Kindig
il 5 Gen 2012
Add to your code:
hold on;
line([x;x], [yx;y],'color','green');
plot(x,yx,'bo','markerfacecolor','blue');
You can tweak the colors as necessary.
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!