Creating a 1x1 Julia array -



Creating a 1x1 Julia array -

i create 1x1 array (say in array{float64,2}) , ini8tialize value. of course of study works:

m=zeros(1,1) m[1,1]=0.1234

is there more concise way create m , initialize @ same time?

since [1.1234] give vector in julia simplest way come is:

julia> fill(1.234,1,1) 1x1 array{float64,2}: 1.234

julia-lang

Comments

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -