You are on page 1of 1

카페

다들 알고 계시는 내용일수도 있지만, 제가 matlab을 새로 깔고 이것때문에 조금 고생을 했습니다.


때문에 혹시나 저같은 사람에게 도움이 될까 글씁니다.
 
MATLAB을 새로 설치하고나서 m-file을 실행 시키면 MATLAB의 editor로 되어있지 않고, 연결프로그램을 찾는 메시지가 뜨는 경우가 있
습니다. 이를 해결하는 방법을 찾아보던 중 mathworks 홈피에서 찾은 내용입니다.
 
This link is designed to execute MATLAB commands.
You have clicked on a link originally designed to execute MATLAB commands. However, these links do not work in a Web
browser. You can run the command by entering the following in the MATLAB command window:
 commandwindow; cwd=pwd; cd([matlabroot '\toolbox\matlab\winfun\private']); fileassoc('add','.m') ;cd(cwd);
disp('Changed Windows file association. M-files are now associated with MATLAB.')
 
즉 command window에
commandwindow; cwd=pwd; cd([matlabroot '\toolbox\matlab\winfun\private']); fileassoc('add','.m') ;cd(cwd);
disp('Changed Windows file association. M-files are now associated with MATLAB.')
 
이 내용을 입력해 주시면 m_file이 editor로 바로 연결 가능합니다
 

http://www.mathworks.com/help/techdoc/matlab_env/rmvd_matlablink__14.html
윈도우 7의 경우 매트랩을 관리자 권한으로 실행 후 입력해 주어야 한다고 하니 참고 하세요^^

http://cafe.naver.com/...7%C1%B7%CE%B1%D7%B7%A5&onSearchHighLight=true&clubid=20799887#[2013-05-22 오후 10:39:06]

You might also like