Trapz gives "Second and third argument must either be variables or a variable and a nonnegative integer specifying the number of differentiations."

15 次查看(过去 30 天)
Why does the following not work:
f_scalar = @(x) 5*x^2+3*x-4; g_scalar = @(x) -4*x^2+6*x+5;
f = @(vec) arrayfun(f_scalar,vec); g = @(vec) arrayfun(g_scalar, vec);
points = solve(f(x) == g(x), x);
h = @(x) g(x) - f(x);
vals = linspace(points(1),points(2),100);
disp(trapz(vals,h(vals)));
It gives "Error using sym/diff (line 36)
Second and third argument must either be variables or a variable and a nonnegative integer specifying the
number of differentiations."

采纳的回答

Stephan
Stephan 2019-12-3
syms x
f_scalar = @(x) 5*x^2+3*x-4; g_scalar = @(x) -4*x^2+6*x+5;
f = @(vec) arrayfun(f_scalar,vec); g = @(vec) arrayfun(g_scalar, vec);
points = solve(f(x) == g(x), x);
points = double(points);
h = @(x) g(x) - f(x);
vals = linspace(points(1),points(2),100);
disp(trapz(vals,h(vals)));

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Numerical Integration and Differentiation 的更多信息

产品


版本

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by