我有一个4阶多项式'p'
如何计算Plive=[5.45 8.18 10.90 13.63 16.35 19.08];
syms trepair Pl
T=matlabFunction(solve(strainc==(Pdesign*D)/(2*Ec*trepair)-Ys*ts/(Ec*trepair)-Pl*D/(2*(Ec*trepair+Es*ts)),trepair));
T(Plive)
x = 1:10
答案 0 :(得分:2)
尝试
$("#one").val(data).change(); angular.element($("#one")).scope().$apply();
每当你想要R中的其他内容时,就有as.function(p)(1:10)
# [1] 15 129 547 1593 3711 7465 13539 22737 35983 54321
函数。
答案 1 :(得分:1)
多项式包建议使用predict
函数:
predict(p, newdata = 1:10)
# [1] 15 129 547 1593 3711 7465 13539 22737 35983 54321