-
Notifications
You must be signed in to change notification settings - Fork 4
Home
The matlab code in this directory should facilitate creating publication quality PSDs using Matlab. Look at the example files (cse.m, cpmg.m and fse.m) to see how to use the code. All files are script files so this should run on any machine that Matlab runs on.
I know that it works under version 5.x of Matlab, but it may also run under version 4x.
Go into Matlab cd into the correct directory (or add the MRPSD into your path) Then just type "cse", "fse", "cpmg" or even better yet, "demo"
$ matlab
$ cd MRPSD
>> fse

>> cse

>> demo
Ahh.. good question. There are many reasons:
-
Many people use Matlab for their data analysis and general coding.
-
All of the print facilities are built in (so you can print to JPEG, Postscript, BMP, TIFF etc etc).
-
Many things come free with the way that it is designed, for example, if you want to look at only one temporal section of your PSD, all you have to do is plot it up and then do: set(gca, 'xlim', [50 100]) (if you want to look at between 50ms and 100ms). USE YOUR IMAGINATION HERE. There are potentially lots of little things like the previous example that I have not even thought of.