The following generates an error.
_, err := matrix.ParseMatlab("[1 2; 3 4.4]")
The error states: strconv.ParseFloat: parsing ".": invalid syntax. When I substitute the value 4.4 with an 4 it works as expected. I would expect that floating point values would be allowed.
The following generates an error.
The error states:
strconv.ParseFloat: parsing ".": invalid syntax. When I substitute the value4.4with an4it works as expected. I would expect that floating point values would be allowed.