Error in publishing matlab code
1 view (last 30 days)
Show older comments
When I try to publish my matlab script, I receive this error code
Caught "std::exception" Exception message is:
BLAS loading error:
dlopen: cannot load any more object with static TLS
Error using open (line 68)
NAME must contain a single string.
I have never had any problems in publishing before and am not able to find the source of this error. Please help.
1 Comment
Stephen23
on 3 Oct 2014
Please don't double post. Just edit the question, or add comments as required.
Multiple posts of the same question make it difficult for other readers to keep track of what answers you are getting, and your feedback too.
Answers (1)
Sean de Wolski
on 2 Oct 2014
which -all size
It sounds like you've written your own size function which is shadowing MATLAB's. The above will reveal it. If you rename it I expect the error to go away.
2 Comments
Sean de Wolski
on 2 Oct 2014
In that case, put a break point on line 67 of load()
dbstop in load at 67
Run publish, it'll stop and inspect what's going on. Why is name not a single string...?
See Also
Categories
Find more on Time Series Collections in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!