What does the error `Error in checkArgsForHandleToPrint` mean?
显示 更早的评论
What does the error:
Error using checkArgsForHandleToPrint
Handle input argument contains nonhandle values.
Error in checkArgsForHandleToPrint
Error in print>LocalCreatePrintJob (line 97)
handles = checkArgsForHandleToPrint(0, varargin{:});
Error in print (line 38)
[pj, inputargs] = LocalCreatePrintJob(varargin{:});
if possible, how does one fix it too would be nice.
3 个评论
Walter Roberson
2017-10-9
What are you passing to print()
Kalyan
2023-1-25
A=[1,2,3,4,5,6,7,7,7];
c=unique(A)
print(A);
same error
Error using checkArgsForHandleToPrint
Handle input argument contains nonhandle values.
Error in checkArgsForHandleToPrint
Error in print>LocalCreatePrintJob (line 97)
handles = checkArgsForHandleToPrint(0, varargin{:});
Error in print (line 38)
[pj, inputargs] = LocalCreatePrintJob(varargin{:});
Rami A
2023-4-7
Hi Kalyan, I think you meant to use disp(A); instead of print(A);.
回答(2 个)
Nathan Daubenmier
2021-1-22
2 个投票
Try using :
fprintf('Info you are trying to print: %f', data_name);
rather than:
print('Info you are trying to print: %f', data_name);
Hope this helps!
mengqiu ren
2018-9-28
1 个投票
I have the same question.Have you solved it?
类别
在 帮助中心 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!