Effacer les filtres
Effacer les filtres

problem with understanding the operators and special characters

2 vues (au cours des 30 derniers jours)
farzad
farzad le 27 Avr 2014
Commenté : farzad le 27 Avr 2014
Hi all
I have a file that contains these lines :
MatDir=pwd; cd('../')
I could not search in matlab help for somehting that can tell me what it means , if you know that , I will be thankful , and also in general I need to know when I see these combinations , where to refer ?
best regards

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 27 Avr 2014
You can test it in Matlab windows command
% If your current forlder is D:\a\b, after
cd('../')
The current folder will be D:\a
The same with pwd
pwd % gives you the current folder

Plus de réponses (1)

Geoff Hayes
Geoff Hayes le 27 Avr 2014
Hi farzad,
The first line, MatDir=pwd; is simply setting the local variable MatDir to the current working directory. Try typing this at the MATLAB command window, and also type help pwd for more details on this command.
The second line, cd('../') simply changes the current working directory to one level above that. Again, from the MATLAB command window, try this command and then re-type pwd. Also, to look for help on this and other commands, just type help cd.
Note that these two commands aren't specific to MATLAB in any way…
Geoff

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by