Undefined variable in function

How can I plot a function that has two variables without getting "undefined variable" error?

 Accepted Answer

fun = @(x) integral(@(omega)cos(omega*x).*sin(omega)./omega,1e-10,8,'ArrayValued',true);
x = -2:0.01:2;
plot(x,fun(x))

Asked:

on 18 Apr 2022

Answered:

on 18 Apr 2022

Community Treasure Hunt

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

Start Hunting!