Reputation: 83
If I want to open file.m in the matlab editor, is there a way to do that directly from the linux terminal? I can't seem to find the answer anywhere.
Upvotes: 4
Views: 1891
Reputation: 3616
Start matlab with the following command to open a file:
matlab -r 'edit <filename>'
Upvotes: 3