Hello!
I am trying to import polygon verticies from a matlab file. The file contains matlab variables, which are arrays of floats and integers.
The "matlabload" function doesn't comply, and returns this error :
> matlabload("my_file.mat");
Error: prompt line 2: in matlabload: can not open file my_file.mat for reading
To debug, I created a quick test file in matlab:
>> aa=1
>> bb="bb"
>> cc=[1,2,3]
>> save("test.mat", "aa","bb","cc")
I then tried to open it in Lumerical, and failed :
> matlabload("test.mat");
Error: prompt line 1: matlabload could not import matlab variable bbinto workspace: MATLAB variable is an unsupported variable type
I tried to open both files in fdtd-solutions and mode-solutions, I still have the same problem.
Has anyone ever encountered this problem? Could someone share clues on how to avoid or solve this issue ?
Many thanks,
Xavier