How do I calculate the coefficients C in this function while P and T are given?
1 回表示 (過去 30 日間)
古いコメントを表示
Zifeng Qiu
2020 年 7 月 19 日
回答済み: Rafael Hernandez-Walls
2020 年 7 月 19 日
T=[4:4:24]';
P=[1e-4;2.5e-4;6e-4;1e-3;1.6e-3;2.25e-3];
plot(T,P)
%find C with the given vectors
0 件のコメント
採用された回答
Rafael Hernandez-Walls
2020 年 7 月 19 日
You can use this equations:
T=[4:4:24]';
P=[1e-4;2.5e-4;6e-4;1e-3;1.6e-3;2.25e-3];
plot(T,P,'o')
n=length(P);
A=[ones(n,1) T T.^2];
C=inv(A'*A)*A'*P;
P2=C(1)+C(2)*T+C(3)*T.^2;
hold on
plot(T,P2)
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!