From: Jim on
I was wondering how to go about changing my default save directory from "work" to another folder on my computer. Any help would be appreciated.

JR
From: ImageAnalyst on
On Apr 30, 5:43 pm, "Jim " <mubelac...(a)sjd.com> wrote:
> I was wondering how to go about changing my default save directory from "work" to another folder on my computer.  Any help would be appreciated.
>
> JR

-------------------------------------------
You can edit your startup.m file and put
cd /WhateverFolderYouWant;
in there. Then when MATLAB starts up it will change the current
folder to be that folder.
From: us on
"Jim " <mubelacito(a)sjd.com> wrote in message <hrfit7$39j$1(a)fred.mathworks.com>...
> I was wondering how to go about changing my default save directory from "work" to another folder on my computer. Any help would be appreciated.
>
> JR

a hint:

help addpath; % <- and siblings...
hep cd;

us