change last element in array by specific value matlab

Let's say I have matrix a
a=[1 2 3 4 5 6 7 8 9];
it's observed that the last value of array a is "9".
I want to change this value to be 1
Hope result is:
reslut=[1 2 3 4 5 6 7 8 1];

 Risposta accettata

madhan ravi
madhan ravi il 8 Giu 2019
Modificato: madhan ravi il 8 Giu 2019
Result = a;
if Result(end) == specific_value % specific value is 9 for example
Result(end) = 1;
end

4 Commenti

Or perhaps all you need simply is:
Result = a;
Result(end) = 1;
actually 9 is the last value of array "a". 9 is NOT specific value. that's why , for general, I don't know specific value. Can you fix the code?

Accedi per commentare.

Più risposte (0)

Categorie

Tag

Non è stata ancora inserito alcun tag.

Richiesto:

il 8 Giu 2019

Commentato:

il 8 Giu 2019

Community Treasure Hunt

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

Start Hunting!

Translated by