Stack traces arising in pcode do not include line numbers
1 次查看(过去 30 天)
显示 更早的评论
Consider the following code:
% doThings.m
i = 1;
j = 2;
k = 3;
l = seven; %seven is deliberately undefined
I pcode compile doThings.m to give me the following:
doThings.p
If I now run doThings in Matlab 2018a, I see this:
>> doThings
Undefined function or variable 'seven'.
Error in doThings
The same code, when run in Matlab 2013a gives me this:
>> doThings
Undefined function or variable 'seven'.
Error in
/home/rk/doThings.p>doThings
(line 4)
Notice that I get a line number in the stack trace from 2013a, but no line numbers from the stack trace in 2018a.
- Why are line numbers no longer visible in error traces of pcode-compiled matlab?
- Is there a configuration option to switch line numbering on for pcode-compiled matlab?
- If so, how can I set this option, assuming a headless installation?
0 个评论
回答(2 个)
Hari Krishna Ravuri
2019-7-30
编辑:Hari Krishna Ravuri
2019-7-31
I understand that, line numbers are not being displayed in pcode error traces in your MATLAB 2018a.Please update your MATLAB to MATLAB 2019a.
Shivam Sardana
2019-7-31
编辑:Shivam Sardana
2019-7-31
The issue with pcode has been brought to the notice of developers. They will investigate the matter further.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!