Answers for "how to write a 10x10 matrix in rstudio"

0

how to write a 10x10 matrix in rstudio

ranVal= sample(1:10,100,replace =T) #creating 10X10 with random values

M=matrix(ranVal,nrow=10)

print (M)
Posted by: Guest on November-05-2020

Code answers related to "how to write a 10x10 matrix in rstudio"

Browse Popular Code Answers by Language