Page 1 of 1

A MATLAB string constant is not terminated properly

Posted: Fri Dec 16, 2016 9:39 pm
by matlab1
tf

Re: A MATLAB string constant is not terminated properly

Posted: Tue Aug 25, 2020 11:34 am
by matlab1
For solution, you must enter a complete string

for example

var1 = "matlab1.com


is wrong, because you did not terminate the string.

var1 = "matlab1.com"


is right.