Matlab error dealing with vectors
Matlab error dealing with vectors
(OP)
I get the following error in the 'command window' when using characters like ./ or .*, when using vectors.
"The input character is not valid in MATLAB statements or expressions."
What is the meaning of this, if ./ and .* are valid MATLAB commands?
"The input character is not valid in MATLAB statements or expressions."
What is the meaning of this, if ./ and .* are valid MATLAB commands?





RE: Matlab error dealing with vectors
TTFN
FAQ731-376: Eng-Tips.com Forum Policies
RE: Matlab error dealing with vectors
- Steve
RE: Matlab error dealing with vectors
posting your input might help as well.
a=[1 2 3]
b=[4 5 6]
a./b
a.*b
is not giving me an error.