help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: remove row from matrix


From: Ben Abbott
Subject: Re: remove row from matrix
Date: Fri, 08 Oct 2010 18:42:05 -0400

On Oct 8, 2010, at 6:11 PM, Dr. Johannes Zellner wrote:

> Hi
> 
> how do I remove a row from a matrix?
> 
> -- 
> Johannes

To remove the 4th row from a matrix ...

        a = rand (7);
        a(4,:) = [];

Ben



reply via email to

[Prev in Thread] Current Thread [Next in Thread]