help-octave
[Top][All Lists]
Advanced

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

Re: create array of matrix


From: Kai Torben Ohlhus
Subject: Re: create array of matrix
Date: Wed, 18 Jul 2018 13:11:33 +0200

On Wed, Jul 18, 2018 at 6:50 AM shivax <address@hidden> wrote:
i want to do this:

A[1]=B[1,3,4;4,5,6;5,6,7]
A[2]=B[4,5, 9;3,4,5;1,2,3]
..

i want to creare array of matrix..

it's possible? i try to use  Indexing Cell Arrays but it's so difficult


 Do you want this?

A{1} = [1,3,4;4,5,6;5,6,7];
A{2} = [4,5, 9;3,4,5;1,2,3];

HTH,
Kai

reply via email to

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