Effacer les filtres
Effacer les filtres

how to write delta function like this?

8 vues (au cours des 30 derniers jours)
Kuheli Mondal
Kuheli Mondal le 31 Mar 2016
Commenté : Ced le 31 Mar 2016
h(n)=delta(n-3)-2*delta(n-4); delta(n==0)=1 can any one help me. Thank you.
  1 commentaire
Ced
Ced le 31 Mar 2016
The delta function in this case is defined as
"if n is equal to 0, then the function value is 1, else, the function value is 0"
You can implement it just like that in matlab.

Connectez-vous pour commenter.

Réponses (1)

Jan
Jan le 31 Mar 2016
delta = (n==0);
  1 commentaire
Ced
Ced le 31 Mar 2016
Did you mean to write
delta = @(n)(n==0);
?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Parallel for-Loops (parfor) dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by