regression method (in matlab)
古いコメントを表示
Hi
I have two curves , one is measured one is calculated from cylinder. They are all angle dependent.
Angle->Pressure
Would you offer any matlab function that I calculate the regression with these two datas.
I am searching the qaulity of simulation regarding to measurement? The matrixes are like that
The Matrix A is (measured)
Angle Pressure
----- ------
1 3,35000000000000
2 3,33000000000000
3 3,31000000000000
4 3,35000000000000
5 3,31000000000000
....
the Matrix B (simulated)
Angle Pressure
----- --------
1 3,12302310000000
2 3,10574540000000
3 3,08854990000000
4 3,07221170000000
5 3,05751980000000
Best Regards.
2 件のコメント
Star Strider
2012 年 7 月 7 日
編集済み: Star Strider
2012 年 7 月 7 日
What regression model are you considering?
Orkun OZENER
2012 年 7 月 7 日
採用された回答
その他の回答 (2 件)
Star Strider
2012 年 7 月 7 日
You list one set of data as being ‘measured’ and the other as ‘simulated’. Are you comparing the fit of the simulation to the measured data? If so, then the best measure to describe their relationship might be the mean-square error:
MSE = mean((measured-simulated).^2);
The RMS error Image Analyst refers to is:
RMS = sqrt(MSE);
Kazim Hanbay
2012 年 8 月 9 日
0 投票
soru hakkında şunu söyleyebilirim;Her iki dağılımın olasılık yoğunluk fonksiyonlarını hesaplayıp daha sonra lineer reg. deneyebilirsiniz sanırım.Ayrıca size bir şey sormak istiyorum.Bir görüntünün korelasyon matrisini nasıl hesaplayabilirim?Daha sonra bu matrisin öz değer ve öz vektör analizini yapmam gerekiyor.
2 件のコメント
Walter Roberson
2012 年 8 月 10 日
Mechanical translation of above (Google):
I can say about the question, the probability density functions of both distributions and then calculate the linear reg. I guess you can try. Also I want to ask you something. How do I calculate the correlation matrix of an image? Then I need to do an analysis of this matrix eigenvalues and eigenvectors.
Orkun OZENER
2012 年 9 月 2 日
カテゴリ
ヘルプ センター および File Exchange で Linear Predictive Coding についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!