Re: Multi dimensional lists python
Multi dimensional arrays can be used as matrices substitutes in linear algebra calculations. Yes the syntactical burden can get more complex, but many languages have ways to take smaller arrays and build them up into 2 and 3 D structures.
Kyles-MacBook-Pro.local:~ kyle% R
R version 3.6.1 (2019-07-05) -- "Action of the Toes"
Copyright (C) 2019 The R Foundation for Statistical Computing
Platform: x86_64-apple-darwin18.6.0 (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > x = c(1,2,3) > y = c(5,3,1) > z = c(7,2,1) > rbind(x,y,z) [,1] [,2] [,3] x 1 2 3 y 5 3 1 z 7 2 1 > cbind (x,y,z) x y z [1,] 1 5 7 [2,] 2 3 2 [3,] 3 1 1
-- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector