Let's say I have an array of the bytes of a mat file loaded into my Matlab shell. One way to parse this data is to write it to the disk, and then use Matlab load function. Is there a way to do that without writing to the hard drive (on windows)?
I know that in unix I might be able to write the data to a named pipe and load from it, but I don't think this would work in windows.
The only solution I could think of is using a Ram Disk. Will be glad to hear other ideas.