Error Message and Paths

조회 수: 2 (최근 30일)
Suzzie
Suzzie 2011년 1월 26일
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
Suzzie
Suzzie 2011년 1월 30일
line 3: DestDir = imgDir = '/Users/suzzie/Documents/MATLAB/FaceRec/TestDir/AlignedFaceImages/'
matlab version: 7.10 (r2010a)
Siddharth Shankar
Siddharth Shankar 2011년 1월 30일
Suzzie, why are you assigning a different value to imgDir on two consecutive lines?

댓글을 달려면 로그인하십시오.

답변 (1개)

Vieniava
Vieniava 2011년 1월 27일
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
Oleg Komarov
Oleg Komarov 2011년 1월 27일
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/'

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Automotive에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by