photo

Xiaoning.Wang


Last seen: 1 month 前 自 2020 起处于活动状态

Followers: 0   Following: 1

消息

统计学

MATLAB Answers

30 个提问
27 个回答

排名
239,056
of 300,015

声誉
0

贡献数
30 个提问
27 个回答

回答接受率
56.67%

收到投票数
0

排名
 of 20,862

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 166,984

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
matlab2022b如何将代码的默认设置与cscdesigner中函数映射关联起来
2022b 手动设置内存段 1:simulink的菜单栏->APP->Embedded Coder->代码接口->Embedded Coder 字典(切记不能选择共享Embedded Coder 字典), 2:会弹出一个界面: 选择->内存 ...

3 months 前 | 0

| 已接受

已回答
matlab2022b如何将代码的默认设置与cscdesigner中函数映射关联起来
1: 通过脚本设置选择用户自定义的package try coderMapObj = coder.mapping.api.get(bdroot); catch co...

3 months 前 | 0

提问


matlab2022b如何将代码的默认设置与cscdesigner中函数映射关联起来
1:2016和2017可以在configuration Paramters(Ctrl+E)-> Memory Sections Package->选择用户自定义的。 Initialize/Terminate-> 选择用户定义,...

3 months 前 | 2 个回答 | 0

2

个回答

已回答
simulink如何与CANoe实现联调
回答1: 该场景下是不需要CANoe,是纯simulink 仿真实现 记录和回放 CAN 报文 - MATLAB & Simulink Example 但是需要做相对应的.mat处理。 canMsgTimetable = blfread('IPU_...

3 months 前 | 0

提问


simulink如何与CANoe实现联调
1:整车录取整车报文, 2:需要将CAN报文在应用层(simulink)进行unpack 和pack 3:当点点击Simulink仿真运行时,数据来自CANoe,同时CANoe也在回放数据。

3 months 前 | 1 个回答 | 0

1

个回答

提问


Function or variable 'ms1' not recognized
matlab2022b生成嵌入式代码报错 Function or variable 'ms1' not recognized 本人是手动点击生成代码(Ctrl+B),并没有想过的脚步, I manually clicked to generate t...

3 months 前 | 1 个回答 | 0

1

个回答

已回答
matlab如何安装matlab自带的附件,或者添加其他附件
MinGW-64安装包地址 MinGW-w64 - for 32 and 64 bit Windows - Browse /Toolchains targetting Win64/Personal Builds/mingw-builds at Sourc...

4 months 前 | 0

已回答
matlab如何安装matlab自带的附件,或者添加其他附件
addons = matlab.addons.installedAddons 返回当前安装的附加功能的列表。 newAddon = matlab.addons.install(fileName) 安装 fileName 指定的附加功能。如果已安装附加功能...

4 months 前 | 0

提问


matlab如何安装matlab自带的附件,或者添加其他附件
1: 之前matlab中可以通过点击附件添加来安装附件 2:也可以将负载下载下来,通过脚本的方式安装,如何判断呢?

4 months 前 | 2 个回答 | 0

2

个回答

已回答
Simulink中生成Autosar代码中如何使得Min Max 生成fminf 或fmaxf 函数 ( How to make Min Max generate fminf or fmaxf functions when generating Autosar code in Simulink)
针对C问题,Targetlink设置C99是不能满足要求 如果使用S-function,但是每个人和每个场景需要Min, Max使用的个数不一样,所以减一大家使用Stateflow做一个Min,该Min需要用户双击点击,需要自己输入 Inport 的Nu...

8 months 前 | 0

提问


如何使用脚本获取simulink模式是否关联了sldd文件
如何通过脚本获取simulink是否关联了sldd文件 如何通过脚本设置simulink关联sldd文件 以及sldd文件的相关属性

9 months 前 | 0 个回答 | 0

0

个回答

已回答
Simulink中生成Autosar代码中如何使得Min Max 生成fminf 或fmaxf 函数 ( How to make Min Max generate fminf or fmaxf functions when generating Autosar code in Simulink)
在设置参数中可以选择设置C99 cs.set_param('TargetLangStandard', 'C99 (ISO)'); % 语言标准 因为fminf,fmaxf是在C99标准规则中

9 months 前 | 0

| 已接受

提问


Simulink中生成Autosar代码中如何使得Min Max 生成fminf 或fmaxf 函数 ( How to make Min Max generate fminf or fmaxf functions when generating Autosar code in Simulink)
simulink 生成Autosar 代码中 如何设置Min 或 Max 在生成代码中使用fminf ,fmaxf 函数, 不想使得代码通过if else的方式来实现 Min 或Max Generating Autosar code using ...

9 months 前 | 3 个回答 | 0

3

个回答

已回答
How to find all specified files in a specified path in Matlab?matlab 如何查找指定路径下的所有指定文件
可以查看两个help 文件 listing = dir('*.txt'); % 列出当前文件夹中所有的txt文件 listing = dir('*.txt'); % 返回当前文件夹下所有.txt文件的信息 listing = dir('**/*.tx...

10 months 前 | 0

| 已接受

提问


How to find all specified files in a specified path in Matlab?matlab 如何查找指定路径下的所有指定文件
Matlab 如何遍历所有文件下以及子文件中的模型文件(.mdl ,.slx) How Matlab Traverses Model Files in All Files and Subfiles

10 months 前 | 3 个回答 | 0

3

个回答

已回答
MF4文件如何导入matlab
matlab自带的例子 ReadingDataFromMDFFilesExample.m

11 months 前 | 0

已回答
MF4文件如何导入matlab
可以通过CANape导出EXCEL格式

11 months 前 | 0

提问


MF4文件如何导入matlab
MF4如何导入simulink 仿真。

11 months 前 | 2 个回答 | 0

2

个回答

已回答
simulink使用simPrintFromDialog进行打印PDF文件,打印模板.fig文件如何制作
web(fullfile(docroot,'simulink/ug/create-print-frames.html')) 通过frameedit命令创建一个Print Frame,可以选择纸张的大写,纸张的横竖方向 另存为.flg文件格式

1 year 前 | 0

| 已接受

提问


simulink使用simPrintFromDialog进行打印PDF文件,打印模板.fig文件如何制作
M脚本通过simPrintFromDialog生成打印PDF文件。但是打印的模板文件*.fig文件如何获得

1 year 前 | 1 个回答 | 0

1

个回答

提问


How to set the colors of all blocks in simulink to black (only one color)?如何将simulink中所有的Block的颜色全部设置为黑色(只有一种颜色)
There are many modules with different colors in Simulink. Due to the large quantity, I want to restore all colors to the default...

2 years 前 | 0 个回答 | 0

0

个回答

提问


How to recognize boolean types in C caller block? 如何使用C Caller blcok 调用boolean数据类型
Currently, I am using C Caller Block to call C code, which contains a Boolean data type as an input parameter. I have also defin...

2 years 前 | 0 个回答 | 0

0

个回答

提问


how to Call back API calls the value of Constant Block 如何使用Call back API 调用Constant Block的值
I have set a variable in the Constant block and want to view its definition through the call back method 在Constant block中设置了变量,...

2 years 前 | 1 个回答 | 0

1

个回答

提问


How does an M file identify whether a simulink file is a library file? M文件是如何识别simulink文件是否为库文件?
I want to search for all model files under the path using M language and do not want to include library files 我想通过M语言来搜索路径下的所有模...

2 years 前 | 1 个回答 | 0

1

个回答

已回答
Matlab合并的字符串中带有单引号
单号号,可以使用三个单引号,进行处理 如: >> ['set_param(char(ds_Sw),' '''OutDataTypeStr''' ',' 'myname)'] ans = set_param(char(ds_Sw),'OutDat...

2 years 前 | 0

提问


Matlab合并的字符串中带有单引号
matlab在合并字符串的时候,如果字符串中有单引号,如何处理单引号

2 years 前 | 1 个回答 | 0

1

个回答

已回答
已经安装的Matlab需要增加新的库,应该如何操作?The installed Matlab needs to add a new library. What should I do?
你可以在help文件中查看这个命令:matlab.addons.install()

2 years 前 | 0

提问


已经安装的Matlab需要增加新的库,应该如何操作?The installed Matlab needs to add a new library. What should I do?
我已经安装了Matlab,当时没有全部安装所有的库,现在需要了我应该如何安装,谢谢!

2 years 前 | 1 个回答 | 0

1

个回答

加载更多