我是靠谱客的博主 高大招牌,最近开发中收集的这篇文章主要介绍matlab function call,Function Call,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

C Construct

void add_function(void)

{

y1 = u1 + u2;

}

Procedure

1. Open example model ex_function_call.

0571757a82b00b450e595a6b80848447.png

The subsystem has two inputs and returns one output.

9077e4f7d9511f36c3bf39c10bae767c.png

Selecting the Treat as atomic unit parameter enables parameters on the Code Generation tab. The Code Generation tab provides these customizations:

Function packaging set to Nonreusable function

Function name options set to User specified

Function name specified as add_function

File name options set to Use function name

2. To build the model and generate code, press Ctrl+B.

Results

In ex_function_call.c, the function is called from ex_function_call_step:

/* Model step function */

void ex_function_call_step(void)

{

/* Outputs for Atomic SubSystem: '/Add_Subsystem' */

add_function();

/* End of Outputs for SubSystem: '/Add_Subsystem' */

}

The function prototype is externally declared through the subsystem file, add_function.h:

extern void add_function(void);

The function definition is in the subsystem file add_function.c:

void add_function(void)

{

/* Outport: '/y1' incorporates:

* Inport: '/u1'

* Inport: '/u2'

* Sum: '/Sum'

*/

rtY.y1 = u1 + u2;

}

最后

以上就是高大招牌为你收集整理的matlab function call,Function Call的全部内容,希望文章能够帮你解决matlab function call,Function Call所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部