Error in publishing matlab code
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
Stephen23
2014-10-3
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.
回答(1 个)
Sean de Wolski
2014-10-2
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 个评论
Sean de Wolski
2014-10-2
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...?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Time Series Collections 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!