Azzera filtri
Azzera filtri

deletion of first row in the matrix

3 visualizzazioni (ultimi 30 giorni)
ARJUN K P
ARJUN K P il 16 Set 2015
Risposto: Thorsten il 16 Set 2015
my matrix is the form:
Ki = [25 35, 56 41,85 78] i want delete the first row data..
answer like:
56 41, 85 78

Risposta accettata

Thorsten
Thorsten il 16 Set 2015
Use ; to separate rows
Ki = [25 35; 56 41; 85 78];
Delete first row
Ki(1,:) = [];

Più risposte (0)

Categorie

Scopri di più su Multidimensional Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by