使用Matlab Coder后如何在Visual Studio中显示Matlab变量值?

时间:2019-05-22 16:26:31

标签: c matlab

我有一个非常基本的Matlab程序:

hello.m

sprintf('hello')
disp("hello")

然后我使用codegen -config:dll hello -reportcodegen -config:lib hello -report

将其转换为C代码

然后按照以下步骤在Visual Studio中运行它:https://www.mathworks.com/help/coder/ug/use-a-c-dynamic-library-in-microsoft-visual-studio-project.html

但是,在VS中构建并运行它之后,没有任何输出。我以这个为例,因为我希望有一种方法可以在VS中显示Matlab变量。这可能吗?

1 个答案:

答案 0 :(得分:0)

尝试使用fprintf打印生成的代码fprintf('Hello, World');中的值。 disp并通过省略分号来打印输出在生成的代码中无效。