From: Tim on
Hi,

I would like to edit matlab scripts in two cases

(1) In matlab Command window running in a linux terminal, how to create and edit a script file? use

edit(filename)

will invoke the interactive editor, which is not desired while operating on a linux server.

(2) In emacs, is there any way to edit matlab script conveniently? Which is better, using MATLAB-Emacs or EmacsLink?

when I am trying to cvs checkout MATLAB-Emacs from http://sourceforge.net/scm/?type=cvs&group_id=154105, which modulename should I specify?
From: Nathan on
On Mar 3, 5:05 pm, Tim <tim...(a)yahoo.com> wrote:
> Hi,
>
> I would like to edit matlab scripts in two cases
>
> (1) In matlab Command window running in a linux terminal, how to create and edit a script file? use
>
> edit(filename)
>
> will invoke the interactive editor, which is not desired while operating on a linux server.
>
> (2) In emacs, is there any way to edit matlab script conveniently? Which is better, using MATLAB-Emacs or EmacsLink?
>
> when I am trying to cvs checkout MATLAB-Emacs fromhttp://sourceforge.net/scm/?type=cvs&group_id=154105, which modulename should I specify?

Well... a matlab script file is just a text file, is it not?
You can just use vi or emacs to edit a file and just save it with
the .m extension so Matlab will recognize it.
Note, however, that you won't have the help that the matlab editor
provides you if you choose to do it this way.

-Nathan