We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exporting cell arrays populated by numbers seems to export an array of strings. For example, a cell with content:
200, 1.5
Should export as:
[200, 1.5]
But is currently exporting as:
["200", "1.5"]
The text was updated successfully, but these errors were encountered:
This is actually exporting ALL arrays as string arrays. Bools and numbers are both affected.
Sorry, something went wrong.
This issue has been fixed and will be released with v44.
Synthoid
No branches or pull requests
Exporting cell arrays populated by numbers seems to export an array of strings. For example, a cell with content:
200, 1.5
Should export as:
[200, 1.5]
But is currently exporting as:
["200", "1.5"]
The text was updated successfully, but these errors were encountered: