equation or formula for multiple values to equal a constant
显示 更早的评论
Constant is 56.68 and the values are 32.06, 34.26, 35.84, 39.2, 44.92, 52.24
1 个评论
Dyuman Joshi
2023-3-26
What is the problem you are facing? How does this relate to MATLAB?
回答(1 个)
format long g
x = [32.06, 34.26, 35.84, 39.2, 44.92, 52.24];
y = repelem(56.68, 1, length(x));
p = polyfit(x, y, 2)
To within round-off error, the formula is
y = 0*x^2 + 0*x + 56.8
which is just
y = 56.8
类别
在 帮助中心 和 File Exchange 中查找有关 Robust Control Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!