Edit vs open from command line
3 views (last 30 days)
Show older comments
I have two classes, Sub and Super, where Sub is a subclass of Super. Both m-files are in the same folder (say /path/to/mydir). I noticed a difference between using open and edit from the command line. If the current directory is /path/to/mydir, then using either
edit Sub.m
open Sub.m
open Sub.m in the editor. However, if the current directory is a different one and /path/to/mydir is on the Path, then
edit Sub.m
opens Super.m, while
open Sub.m
opens Sub.m in the editor. What is the difference between using edit or open for m-files?
If it's relevant, I'm using MATLAB R2014b on Linux.
0 Comments
Answers (1)
Andrew Bliss
on 27 Sep 2017
That's odd that edit Sub.m would open Super.m. Perhaps
which('Sub.m','-all')
could help trace the problem?
See Also
Categories
Find more on Software Development Tools in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!