필터 지우기
필터 지우기

Default location in matlab

조회 수: 1 (최근 30일)
Philosophaie
Philosophaie 2015년 9월 10일
답변: Star Strider 2015년 9월 10일
In R2014b right now when I bring up MatLab the default location is: "C:\Users\User\Documents\MATLAB"
I want to change it to:
"C:\Users\User\Documents\NewFolder\MATLAB"
So my default location is more manageable to me.
I have searched Preferences maybe I missed something.

답변 (2개)

Image Analyst
Image Analyst 2015년 9월 10일
To specify that MATLAB starts up with that folder as the "Current folder", put this into your startup.m file:
cd('C:\Users\User\Documents\NewFolder\MATLAB');

Star Strider
Star Strider 2015년 9월 10일
I would do it in a slightly different order (as I have done on all my MATLAB installations). Create the folder first, then add it to the path and save it:
mkdir('C:\Users\User\Documents\MATLAB\NewFolder')
addpath('C:\Users\User\Documents\MATLAB\NewFolder')
savepath

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by