We can create Matlab with multiple axes with command subplot. Example : subplot(2,2,1); plot(x1,y1); subplot(2,2,2); plot(x1,y4); subplot(2,2,3); plot(x1,y4); subplot(2,2,4); plot(x1,y4); Output image from this Matlab with multiple axes code is : But when we create a gui program (with GUIDE) in matlab, we can not create Matlab GUI with multiple axes directly. This is a
We can create random data in Matlab with command : rand (Uniformly distributed pseudorandom numbers) randn (Normally distributed random numbers) unifrnd (Continuous uniform random numbers) random (Random numbers) If we want to create random data in range, we can use unifrnd function. Example : unifrnd (1 , 10 , [5,1]) This command will create random
Are you use Ubuntu Linux? I get a best free Ubuntu book when searching in Linux Forums. This Ubuntu book give complete tutorial about Ubuntu as system operation, how to setting Ubuntu, and etc. With this book, we can give explanation why we can use Ubuntu as my system operation.This is best free Ubuntu book
We can get information from a file in Linux with command : ls -l This is output from my file : -rw-r–r– 1 root root 0 2011-03-09 13:50 tesfile If we want to change file owner and group this file from root to toto, we can use this command : chown root:toto tesfile This command