photo

Xiaoning.Wang


Last seen: 4 mois il y a Actif depuis 2020

Followers: 0   Following: 1

Message

Statistiques

MATLAB Answers

30 Questions
27 Réponses

RANG
127 089
of 300 753

RÉPUTATION
0

CONTRIBUTIONS
30 Questions
27 Réponses

ACCEPTATION DE VOS RÉPONSES
56.67%

VOTES REÇUS
0

RANG
 of 21 075

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 170 858

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Thankful Level 2
  • First Answer

Afficher les badges

Feeds

Afficher par

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

5 mois il y a | 0

| A accepté

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

6 mois il y a | 0

Question


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

6 mois il y a | 2 réponses | 0

2

réponses

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

6 mois il y a | 0

Question


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

6 mois il y a | 1 réponse | 0

1

réponse

Question


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

6 mois il y a | 1 réponse | 0

1

réponse

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

7 mois il y a | 0

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

7 mois il y a | 0

Question


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

7 mois il y a | 2 réponses | 0

2

réponses

Réponse apportée
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...

11 mois il y a | 0

Question


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

12 mois il y a | 1 réponse | 0

0

réponse

Réponse apportée
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标准规则中

12 mois il y a | 0

| A accepté

Question


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 ...

12 mois il y a | 3 réponses | 0

3

réponses

Réponse apportée
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...

environ un an il y a | 0

| A accepté

Question


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

environ un an il y a | 3 réponses | 0

3

réponses

Réponse apportée
MF4文件如何导入matlab
matlab自带的例子 ReadingDataFromMDFFilesExample.m

environ un an il y a | 0

Réponse apportée
MF4文件如何导入matlab
可以通过CANape导出EXCEL格式

environ un an il y a | 0

Question


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

environ un an il y a | 2 réponses | 0

2

réponses

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

plus d'un an il y a | 0

| A accepté

Question


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

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


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...

environ 2 ans il y a | 1 réponse | 0

0

réponse

Question


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...

environ 2 ans il y a | 1 réponse | 0

0

réponse

Question


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中设置了变量,...

environ 2 ans il y a | 1 réponse | 0

1

réponse

Question


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语言来搜索路径下的所有模...

environ 2 ans il y a | 1 réponse | 0

1

réponse

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

plus de 2 ans il y a | 0

Question


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

plus de 2 ans il y a | 1 réponse | 0

1

réponse

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

presque 3 ans il y a | 0

Question


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

presque 3 ans il y a | 1 réponse | 0

1

réponse

Charger plus