Borrar filtros
Borrar filtros

Delete Column from matrix

1 visualización (últimos 30 días)
Filippo
Filippo el 21 de Mzo. de 2012
Hi, I'm tring to delete item from structure, the structure is: A.data A.smpf
When the program arrives in this instructions:
A.data(1,(c_x+1):end)=[]; c_x is 13 and A.data is 1x180000. I have this error: A null assignment can have only one non-colon index.
Some help? Thanks
  1 comentario
Daniel Shub
Daniel Shub el 21 de Mzo. de 2012
What are you trying to do? It looks like you are tying to delete a portion of a column. Are you sure you are not trying to set the values to nan or 0 or -inf.

Iniciar sesión para comentar.

Respuesta aceptada

TAB
TAB el 21 de Mzo. de 2012
Try
A.data((c_x+1):end)=[];
  1 comentario
Filippo
Filippo el 21 de Mzo. de 2012
thanks,
It's perfect...

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing 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