several p-code dates are older than m files
5 views (last 30 days)
Show older comments
Warnings:
str2double.p may be obsolete and may need to be regenerated.
cell2mat.p is older than MATLAB file, ....
I would like to fix this issue, especially as it continues to write to the command window, especially if it slows down the parallel programming performance. Either fix it, or turn the warning off.
Answers (1)
Steven Lord
on 6 May 2019
Can you check that you haven't defined a function named str2double or cell2mat that is shadowing the ones included in MATLAB?
which -all str2double
which -all cell2mat
You should see both str2double.p and str2double.m in toolbox\matlab\strfun, with str2double.m listed as Shadowed, and similarly for cell2mat.p and cell2mat.m in toolbox\matlab\datatypes with cell2mat.m Shadowed. You may also see other copies that are methods of certain types of objects, but do you see any definitions of those functions outside your matlabroot?
0 Comments
See Also
Categories
Find more on Loops and Conditional Statements 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!