- "a" contains un-calibrated measurements,
- "b" contains the true values,
- "c" contains values related to the difference between "a" and "b"?
- "diff" equal to the difference between "a" and "b"?
How do I calibrate array in MATLAB using 3 variables??
조회 수: 11 (최근 30일)
이전 댓글 표시
I have:
a = (1000,1)
b = (1000,1)
c = (1000,1)
diff = (1000,1)
a and b should have similar values (i.e. profiles) to each other but there is a difference (diff). Variable a needs to be corrected ( calibrated) so that the profile looks more similar to b (as b = true values). It seems the difference in the top 100 rows are related to variable c.
I have the equation of a straight line by using polyfit and polyval, but I'm not sure now how best to proceed. I wondered if anyone knows a great function / set of functions to use to calibrate variable a using var b, c, and diff?
As well as this, It would be nice to obtain the 95% and 99% confidence levels, residuals, errors (e.g. residual standard error), and standard deviations, of both the prediction and regression lines.
Currently using MATLAB R2014b
Thanks,
Michael
댓글 수: 0
답변 (1개)
Brian Neiswander
2015년 8월 17일
I understand that you have three distinct vectors "a", "b", and "c". From your descriptions:
I am not clear of the role of the vectors "c" and "diff" in your analysis. I am going to assume that you are trying to do a linear calibration of the form below:
b = K*a + Z
As you mentioned, you can use the "polyfit" and "polyval" functions to accomplish this. If you have the "Curve Fitting Toolbox", I would recommend using the "fit" function:
[myfit,gof,out] = fit(a,b,'poly1');
This produces a curve fitting object "myfit". You can find goodness-of-fit information inside the "gof" structure and residual information inside the "out" structure.
Note that you can perform more complicated fitting (multi-variate, custom equations) with "fit", as demonstrated in the "Examples" section of the documentation link below:
You can plot the fit using:
plot(myfit,a,b);
You can use the "confint" and "predint" functions to get the confidence and prediction intervals for the fit.
If the approach above does not suit your application, please provide more information about your vectors in order to clarify what you are looking to accomplish.
댓글 수: 3
Brian Neiswander
2015년 8월 18일
To apply the calibration stored in "myfit" to the data in the vector "a", you can simply use:
aCorrected = myfit(a);
The variable "aCorrected" will contain the corrected values of "a" using the fit that was calculated in my post above.
It becomes a bit more complicated if you want to investigate whether the temperature in "c" influences the measurements. I would suggest opening up the "Curve Fitting Tool" by typing the following into the MATLAB command window:
cftool
Note that this tool requires that you have the "Curve Fitting Toolbox" installed. Once the tool is open, you can use the graphical interface to select your variables and quickly test out different fitting options. If you have a guess as to how temperature influences the measurements then you can form a custom equation and see how well it fits your data.
See the link below for more information about using the "Curve Fitting Tool" to fit data:
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with Curve Fitting Toolbox에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!