Martix is getting updated with the value of e,Without adding a new column, Please help me.

1 visualizzazione (ultimi 30 giorni)
persistent eWithDeltaL;
eWithDeltaL = [];
eWithDeltaL(end+1) = e;

Risposta accettata

Walter Roberson
Walter Roberson il 2 Giu 2016
You are overwriting eWithDeltaL with [] every time. You should have the assignment of [] to the variable only when you know that you want to reset the variable.
  2 Commenti
Walter Roberson
Walter Roberson il 2 Giu 2016
When you declare a variable as persistent, it is automatically assigned [] if it does not already exist. You do not need to initialize it to [] unless you want to reset it.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by