How to delete a row in matrix?

5 views (last 30 days)
Matlab111
Matlab111 on 15 Jan 2015
Answered: Youssef Khmou on 15 Jan 2015
For example:
a=[10;
2;
3;
4;
44;
5;
5;
56]
i need to delete first element,in this case, i need to delete '10' how?

Accepted Answer

Youssef  Khmou
Youssef Khmou on 15 Jan 2015
a(1)=[];

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!