photo

Suman


Last seen: 3 months 前 自 2024 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

0 个提问
76 个回答

排名
1,498
of 299,911

声誉
46

贡献数
0 个提问
76 个回答

回答接受率
0.00%

收到投票数
9

排名
 of 20,835

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 166,527

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • 6 Month Streak
  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
"mex -l" adds wired path
Hi @Fei It seems it is looking for the libabcd.lib in wrong directory instead of the one you passed with -L option. Are you sur...

3 months 前 | 0

已回答
how can figure renderer be changed in Matlab 2025a?
Hi @Oleg S For plotting and MATLAB graphics, you cannot currently choose which GPU is used from within MATLAB. MATLAB makes a c...

3 months 前 | 0

已回答
Set callback Function to Multiple Blocks
Hi @Daiana Tudose You can programmatically assign the same "OpenFcn" callback to multiple Subsystem blocks in Simulink using a ...

3 months 前 | 0

已回答
Cross-compile for linux with compiler.build.productionServerArchive
Hi @Marcus A compiled MATLAB binary can only be run on machines which match the architecture of the machine that originally com...

4 months 前 | 0

已回答
Simscape Local Restriction (G) Delta P Equation Documentation
Hi @Luke, You can refer to the following documentation for more information on Local Restriction.

4 months 前 | 1

已回答
Some properties of Aero.satelliteScenario.PhysicalProperties object don't work while other properties of it works.
Hi @Ömer Utku, You can use the 'physicalProperties' function to set the value for the PhysicalProperties of the satellite by sp...

4 months 前 | 2

| 已接受

已回答
Data Dictionary Not Visible in Model Explorer for Reference Subsystem
Hi @thomas, Adding to what Anushka has already mentioned in her answer. “Is there a way to make all linked data dictionaries v...

4 months 前 | 0

已回答
How can I have Matlab Simulink autocode program read data from an external file?
Hi Glen, In order to promt for user input in your compiled application, you will need to incorporate custom C/C++ code in the g...

6 months 前 | 1

已回答
"By default, some results are not generated for headers" - how to get them to generate?
Hi Graham, Here is the link to the documentation for -generate-results-for.

6 months 前 | 1

已回答
How to create signals in data dictionary using excel sheet?
Hi Aditya, You can use the 'readtable' function to read data from the Excel sheet and then create and Signal object and store...

11 months 前 | 0

已回答
To Connect FMU input and output to goto, from blocks using matlab Code.
Hi Hithesh, Please refer to the following documentation to learn about how you can connect blocks programmatically: https://...

11 months 前 | 0

已回答
How to get the port domain or type of a simscape block programmatically?
Hi Jonas, To get information of Simulink or Simscape blocks, you can use 'get_param' function. You can use 'get_param('blockPat...

11 months 前 | 0

已回答
Question about making simulink block for opencv_contrib
Hi Jianlong, OpenCV Importer does not support "opencv_contrib" as mentioned in this documentation. You can try to use the same ...

12 months 前 | 0

已回答
Alternative way to use fitcsvm for code generation
Hi Keshav, You can try to use the "coder.extrinsic" function to use functions that are not supported for code generation. Pleas...

12 months 前 | 0

已回答
Three Phase Power Converter Simulink Model for Losses calculation
Hi Khawaja, The example you are referring to is only available since MATLAB R2022a. Hence, you are unable to find it. You may r...

12 months 前 | 0

已回答
Subscripting into an mxArray is not supported. Cell contents reference from a non-cell array object.
Hi Añ An, The error "Cell contents reference from a non-cell array object." means that the variable "cbs1" is not a cell array....

12 months 前 | 0

已回答
What is the difference between 'none' and 'off' using find_system with 'LookUnderMasks' (MATLAB 2017b)?
Hi Amadeus, The 'none' and 'off' are exactly the same for 'LookUnderMasks'. Similarly, 'all' and 'on' are also equivalent. In f...

12 months 前 | 0

已回答
How to connect a Subsystem's outputPorts (more than 5) to "Bus Creator" programmatically (from scripting)
Hi Arepalli, To add a new "Bus Creator" block with "n" number of Inputs, you can pass an additional name-value parameter in th...

12 months 前 | 0

| 已接受

已回答
Get recent scan data during continuous background sampling with DAQ
Hi Holden, In the code snippet, I see that you are using "start(device)" function to start sampling. This will only acquire dat...

12 months 前 | 0

已回答
Simulink Coder/Embedded Coder: How to configure identifier naming of utility functions?
Hi flrhlt, Please refer to the this MATLAB answer: https://in.mathworks.com/matlabcentral/answers/493581-how-do-i-change-the-na...

12 months 前 | 0

已回答
I want to collect all the block parameters of the multiple simulink model as per the user select the model and print it in Excel file
Hi Aditya, You can use the uigetfile function to select the model files for which you want to extract the parameters. Make sure...

12 months 前 | 0

已回答
How do I change a table lookup algorithm option for all the table lookup blocks in a large Simulink model?
Hi Jeff, You can do it programaticaly with a simple MATLAB script. 1. Get all the Lookup Table blocks present in the model: l...

1 year 前 | 0

已回答
how can I simulate values I saved from CSV file to array.mat in Simulink?
Hi, You can use the "readtable" function to read the data from the CSV file to MATLAB. The "readtable" function returns a MATLA...

1 year 前 | 0

已回答
I am unable to find the .mlx file attached in a simulink model in MATLAB 2021 version. How can I get the file please help me out.
Hi Soumya, Based on the error message, it seems that MATLAB was unable to find the .MLX file. Assuming that it exists, you can ...

1 year 前 | 0

已回答
How to specify input arguments data type when using ssDeclareFunctionCaller?
Hi Arian, You can use the ssSetSimulinkFunctionArgDataType function to set the data types of function and the ssSetSimulinkFunc...

1 year 前 | 0

已回答
Call Simulink Function That is Defined in a Separate Model Using MATLAB Function Block and Model Reference
Hi Arian, It is indeed possible to call a Simulink Function from a MATLAB Function block that are both implemented in separate ...

1 year 前 | 0

已回答
Error using signal.internal.sigcheckfloattype
Hi, You may refer to this MATLAB Answers thread for the similar issue: https://www.mathworks.com/matlabcentral/answers/361053-c...

1 year 前 | 0

已回答
I have to change function visibility of simulink function block using M-Script.
Hi Umesh, In order to modify some dialog parameter value, you can find out the actual parameter name in the following way: >...

1 year 前 | 0

已回答
how to konw the meaning of xout of simulink
Hi 盈天 裴, the xout property refers to the block states at each time point. You can refer to this https://www.mathworks.com/help/...

1 year 前 | 0

已回答
How to remove the error "Can not resolve Simulink signal object for output port" in matlab 2009b
Hi yogi, The error "Cannot resolve Simulink signal object for output port" typically occurs when Simulink is unable to find or ...

1 year 前 | 0

加载更多