필터 지우기
필터 지우기

How can i update my vector in an algorithm

조회 수: 1 (최근 30일)
zahid
zahid 2015년 8월 11일
답변: Torsten 2015년 8월 11일
Hi everyone I am running a simulation in which i am facing the following problem
In a simulation, initially i have the vector a=[2;6;12;4;9;7;16].In the second run of my algorithm the vector is updated in such a way that element at fourth position is deleted and updated vector will be a=[2;6;12;9;7;16].In the third run suppose the element at second position is deleted and updated vector will be a=[2,12,9,7,16].The position of deleted element can vary but here i put the simple example for understanding purpose. Appreciate if anyone can help me to solve this problem
Thanks

채택된 답변

Torsten
Torsten 2015년 8월 11일
a=[2;6;12;4;9;7;16];
a(4)=[]; % fourth element of a is deleted
a(2)=[]; % second element of (new vector) a is deleted
Best wishes
Torsten.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Troubleshooting에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by