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

 Akzeptierte Antwort

Torsten
Torsten am 18 Apr. 2022

0 Stimmen

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

Weitere Antworten (1)

Gefragt:

am 18 Apr. 2022

Beantwortet:

am 18 Apr. 2022

Community Treasure Hunt

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

Start Hunting!

Translated by