change last element in array by specific value matlab
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ha ha
el 8 de Jun. de 2019
Comentada: ha ha
el 8 de Jun. de 2019
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];
0 comentarios
Respuesta aceptada
madhan ravi
el 8 de Jun. de 2019
Editada: madhan ravi
el 8 de Jun. de 2019
Result = a;
if Result(end) == specific_value % specific value is 9 for example
Result(end) = 1;
end
4 comentarios
madhan ravi
el 8 de Jun. de 2019
Have no idea what you mean doesn’t this work? https://in.mathworks.com/matlabcentral/answers/466110-change-last-element-in-array-by-specific-value-matlab#comment_712854
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!