Any idea what that symbol '¤' means? Variable1 is numeric. I thought that symbol might mean, check the number of decimal places, but that didn't seem right with the values obtained?
... View more
I meant, I tested the below and got values of 0, 8 and 9 for different values of variable1 with values of 0.6057, 0.0107 and 1E-7 respectively. testvar = index(variable1,'¤');
... View more
What does if index(variable1,'¤') > 0 mean? When I do the below, I get values of 0, 8 and 9 for different values of variable1. testvar = index(variable1,'¤') > 0; Thanks.
... View more