-1

Even when I am using he addpath command in octave

For eg: addpath('D:\Random Small Projects\Coursera\Machine Learning\Week 2\machine-learning-ex1\ex1')

when i type pwd it is showing the curent directory as 'C:\user'

I don't know why the add path command is not working?

1 Answers1

3

addpath does not change the directory, it just makes the contents of that folder visible to the current working instance of Octave/MATLAB.

Use cd to change directory.

Ander Biguri
  • 35,140
  • 11
  • 74
  • 120