필터 지우기
필터 지우기

Difference in Matlab and Excel

조회 수: 7 (최근 30일)
KATARI LOKESH
KATARI LOKESH 2020년 7월 13일
댓글: KATARI LOKESH 2020년 7월 13일
Hi Experts,
I am trying to do linear regression but there is a difference in matlab and excel.
Can i what could be the reason and how to match data?
  댓글 수: 2
Image Analyst
Image Analyst 2020년 7월 13일
How much of a difference? You forgot to attach your data, forgot to attach your m-file, forgot to attach your Excel script, and forgot to read this link.
KATARI LOKESH
KATARI LOKESH 2020년 7월 13일
Hi , sorry
Here I attached the both datas. Please check.
clear all;close all;clc;
Y= [30;36;1;26;10;12;12;34;0;47;1;49;29];
X= [21;21;19;38;50;12;35;5;17;30;46;20;48];
b= regress(Y,X)
%% output b = 0.592136616
Here I attached the both values
in matlab I a getting b= 0.5921 and in excel I am getting X = -0.213

댓글을 달려면 로그인하십시오.

답변 (1개)

KSSV
KSSV 2020년 7월 13일
Excel fits a striaght line to the data.....to get the same value use polyfit of MATLAB.
p = polyfit(X,Y,1) ;
p(1)
  댓글 수: 1
KATARI LOKESH
KATARI LOKESH 2020년 7월 13일
HI, can you please elaborate your explanantion?
Thanks

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by