|
From: | fibonacci4 |
Subject: | Re: Isosurface plot |
Date: | Fri, 5 May 2017 06:03:49 +0200 |
User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 |
Am 04.05.2017 um 21:35 schrieb
"Niedermayr, Arthur":
Hi Arthur, please answer below. That is the custom. Maybe this function in octave helps you:
reshape(A,m,n) Return a matrix with the specified dimensions (m, n, …) whose elements are taken from the matrix A. The elements of the matrix are accessed in column-major order (like Fortran arrays are stored). The following code demonstrates reshaping a 1x4 row vector into a 2x2 square matrix. reshape ([1, 2, 3, 4], 2, 2) ⇒ 1 3 2 4 Ciao Karl |
[Prev in Thread] | Current Thread | [Next in Thread] |