
Loading and saving data
How do you save variable in binary?
csvwrite('fileName.csv', variable)
How do you read a variable from binary?
csvread('fileName.csv')
How do you save the entire workspace?
save('fileName.mat')
How do you load a .mat file into the workspace?
load('fileName.mat')
How do you save individual variables?
save('fileName.mat', 'variableName', 'anotherVariableName')