change last element in array by specific value matlab

21 次查看(过去 30 天)
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];

采纳的回答

madhan ravi
madhan ravi 2019-6-8
编辑:madhan ravi 2019-6-8
Result = a;
if Result(end) == specific_value % specific value is 9 for example
Result(end) = 1;
end
  4 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by