Making random matrix and viasualise it using UJMP package
Source code name: "lalgebra_ujmp_random.py"
Programming language: Python
Topic: Linear Algebra/Matrices
DMelt Version 1.8. Last modified: 06/26/1971. License: Pro
https://datamelt.org/code/cache/lalgebra_ujmp_random_5857.py
To run this script using the DMelt IDE, copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.


from org.ujmp.core import Matrix

# create matrix with random values between 0 and 1
rand=Matrix.Factory.rand(100, 10)

# create matrix with random values between -1 and - 1
randn = Matrix.Factory.randn(100, 10)

rand.showGUI()
randn.showGUI()



You see the box below because you did not login.