Error Message and Paths
Show older comments
When you get an error message that reads like this:
Error: File: FinProject_ImgAlign.m
Line: 3
Column: 18
The expression to the left of the equals sign is not a valid target for an assignment.
the code showing the paths:
LabelDir = '/Users/suzzie/Documents/MATLAB/FaceRec/TestDir/'
imgDir = '/Users/suzzie/Documents/MATLAB/FaceRec/TestDir/FaceImages/'
DestDir = imgDir = '/Users/suzzie/Documents/MATLAB/FaceRec/TestDir/AlignedFaceImages/'
Please what do you do? I am running MATLAB on a Mac system.
3 Comments
Oleg Komarov
on 26 Jan 2011
Then type:
edit FinProject_ImgAlign
Copy the whole line 3 and paste it here. Also tell us what version of Matlab are you using.
Suzzie
on 30 Jan 2011
Siddharth Shankar
on 30 Jan 2011
Suzzie, why are you assigning a different value to imgDir on two consecutive lines?
Answers (1)
Vieniava
on 27 Jan 2011
I think your code suppose to look like this:
LabelDir = '/Users/suzzie/Documents/MATLAB/FaceRec/TestDir/'
imgDir = '/Users/suzzie/Documents/MATLAB/FaceRec/TestDir/FaceImages/'
DestDir ='/Users/suzzie/Documents/MATLAB/FaceRec/TestDir/AlignedFaceImages/'
The cause of an error was the third line. You are not allowed to make (double) assigment like:
DestDir = imgDir = 'string'
1 Comment
Oleg Komarov
on 27 Jan 2011
Now I get the problem:
1) I agree with Vieniava
2) If the whole code is defined on a single line, then separate each assignments with ;
Ex:
LabelDir = '/Users/suzzie/Documents/MATLAB/FaceRec/TestDir/'; imgDir = '/Users/suzzie/Documents/MATLAB/FaceRec/TestDir/FaceImages/'
Categories
Find more on Semantic Segmentation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!