Thread overview
get number of columns and rows in an ndarray.
Jun 15, 2016
learner
Jun 15, 2016
Seb
Jun 15, 2016
learner
Jun 16, 2016
Ilya Yaroshenko
June 15, 2016
Hi,

How can i get the number of cols and rows in and ndarray that has already been created?

learner


June 15, 2016
On Wednesday, 15 June 2016 at 21:51:25 UTC, learner wrote:
> Hi,
>
> How can i get the number of cols and rows in and ndarray that has already been created?
>
> learner

how about `shape`?

http://dlang.org/phobos/std_experimental_ndslice_slice.html#.Slice.shape
June 15, 2016
On Wednesday, 15 June 2016 at 21:54:22 UTC, Seb wrote:
> On Wednesday, 15 June 2016 at 21:51:25 UTC, learner wrote:
>> Hi,
>>
>> How can i get the number of cols and rows in and ndarray that has already been created?
>>
>> learner
>
> how about `shape`?
>
> http://dlang.org/phobos/std_experimental_ndslice_slice.html#.Slice.shape

Thanks
June 16, 2016
On Wednesday, 15 June 2016 at 21:51:25 UTC, learner wrote:
> Hi,
>
> How can i get the number of cols and rows in and ndarray that has already been created?
>
> learner

Also `sl.length!0`, `sl.length!1`, etc --Ilya