how to write delta function
32 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
shiv gaur
am 24 Jan. 2022
Kommentiert: shiv gaur
am 25 Jan. 2022
how to write delta function in matlab
Write delta function in matlab
Y=f(x)
For a=1:10
m=x*exp(-x^2)+a^2
fm=integrate(f,0,a)
b=2;
y=summation (-inf ,inf) fm*delta(b-p*x)
how to write
end
End
0 Kommentare
Akzeptierte Antwort
David Hill
am 24 Jan. 2022
Or use dirac() built-in function
function x=delta(x)
if x==0
x=inf;
else
x=0;
end
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!