我有一个非常基本的Matlab程序:
hello.m
:
sprintf('hello')
disp("hello")
然后我使用codegen -config:dll hello -report
和codegen -config:lib hello -report
然后按照以下步骤在Visual Studio中运行它:https://www.mathworks.com/help/coder/ug/use-a-c-dynamic-library-in-microsoft-visual-studio-project.html
但是,在VS中构建并运行它之后,没有任何输出。我以这个为例,因为我希望有一种方法可以在VS中显示Matlab变量。这可能吗?
答案 0 :(得分:0)
尝试使用fprintf
打印生成的代码fprintf('Hello, World');
中的值。 disp
并通过省略分号来打印输出在生成的代码中无效。