1 / 8

Mínimos Quadrados

Mínimos Quadrados. Laboratório Básico I Prof. Jaime Urban. Mínimos Quadrados. Em muitas circunstâncias desejamos obter a reta que passa por certo número de pontos (dados);

sasha
Download Presentation

Mínimos Quadrados

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Mínimos Quadrados Laboratório Básico I Prof. Jaime Urban

  2. MínimosQuadrados • Emmuitascircunstânciasdesejamosobter a retaquepassaporcertonúmero de pontos (dados); • Emumasituação ideal os dados estariamtodosalinhadosemumareta; entretanto, devido a errossistemáticosoualeatórioselesestãodeslocadosparacimaouparabaixo de suasposiçõesideais; • Mínimosquadrados é um modeloestatísticoquepermitedeterminar o coeficiente linear e o coeficiente angular de umareta a partirdaminimizaçãoda soma dos quadrados dos resíduos.

  3. MínimosQuadrados - excel

  4. MínimosQuadrados

  5. MínimosQuadrados Coeficiente Angular Coeficiente linear

  6. MínimosQuadrados

  7. Matlab clear; close all; % Exemplo 1 – ajuste linear x = [1,2,3,4,5,6,7,8,9]; y = [8,9,14,15,20,24,26,27,30]; n = 1; p = polyfit(x,y,n); xi = 0:0.1:10; yi = polyval(p,xi); figure(1); plot(x,y,'*',xi,yi); %Exemplo 2 – polinomio de grau 4 x = [1,2,3,4,5,6,7,8,9]; y = sin(x)+rand(1,length(x)); n = 4; p = polyfit(x,y,n); xi = 1:0.1:9; yi = polyval(p,xi); figure(2); plot(x,y,'*',xi,yi);

  8. Matlab

More Related