Borrar filtros
Borrar filtros

deletion of first row in the matrix

3 visualizaciones (últimos 30 días)
ARJUN K P
ARJUN K P el 16 de Sept. de 2015
Respondida: Thorsten el 16 de Sept. de 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

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays 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!

Translated by