Expected FunctionSignatures to be a non-missing string scalar or character vector.
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Chandler
el 23 de Mayo de 2024
Editada: Ayush Modi
el 23 de Mayo de 2024
Hello. I am getting the following error and cannot solve it:
Expected FunctionSignatures to be a non-missing string scalar or character vector.
Which is produced from running the following:
compiler.build.productionServerArchive(templates, ArchiveName=archive_name, FunctionSignatures=function_signatures);
Where templates is:
{'C:\Users\cgreff\AppData\Local\Temp\matlab\st…'} {'C:\Users\cgreff\AppData\Local\Temp\matlab\st…'} {'C:\Users\cgreff\AppData\Local\Temp\matlab\fe…'}
And where function_signatures is:
{'C:\Users\cgreff\AppData\Local\Temp\matlab\st…'} {'C:\Users\cgreff\AppData\Local\Temp\matlab\st…'} {'C:\Users\cgreff\AppData\Local\Temp\matlab\fe…'}
Any help would be greatly appreciated
0 comentarios
Respuesta aceptada
Ayush Modi
el 23 de Mayo de 2024
Editada: Ayush Modi
el 23 de Mayo de 2024
Hi Chandler,
"productionServerArchive" function expects FunctionSignatures parameter to be character vector or string scalar. Here is the syntax to add FunctionSignatures parameter:
'FunctionSignatures','<path>\<filename>.json' % Path to a single json file is accepted
Refer to the following MathWorks documentation for more information on:
productionServerArchive function: https://www.mathworks.com/help/compiler_sdk/mps_dev_test/compiler.build.productionserverarchive.html#
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre JSON Format en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!