Select Entire Row Julia

[Solved] Select Entire Row Julia | Julia - Code Explorer | yomemimo.com
Question : select entire row julia

Answered by : cautious-cottonmouth

julia> A = fill(5,(6,4))
6x4 Array{Int64,2}: 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5
julia> A[5,:] = 0
0
julia> A
6x4 Array{Int64,2}: 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 0 0 0 0 5 5 5 5

Source : https://stackoverflow.com/questions/23170917/julia-how-to-select-entire-row-from-array | Last Update : Fri, 28 Feb 20

Answers related to select entire row julia

Code Explorer Popular Question For Julia