Here id and i is index. P1, P2, time ev type of Float64. check ev type of bool and another is arrays where elements is Float64.
thank you for your help
julia> rand([1.0, true, "x"], 3, 3, 3)
3Γ3Γ3 Array{Any, 3}:
[:, :, 1] =
true true true
"x" true 1.0
1.0 true 1.0
[:, :, 2] =
"x" 1.0 "x"
1.0 true true
"x" "x" "x"
[:, :, 3] =
1.0 1.0 true
1.0 1.0 1.0
"x" true 1.0
whether thatβs a good idea is a different question - certainly not if you are using this in any performance critical code.
Maybe itβs an artefact of your drawing but your image looks like a table rather than a multidimensional array (maybe what people sometimes call a βlong formatβ table), maybe a DataFrame works for you:
Thank you for the suggestion. One row of the array contains elements, for example dots u0, which are array where elements contains vector of 3 elements. dots u0 and dots on ev is static vector, Ξ±s just vector
I havenβt come up with anything better than this yet.
Foreach value from the interval, there are 50 elements from these data structures. 1-st value from the interval corresponds to elements with indexes from 1 to 50, the second from 50 to 100 and so on.