Akshat Dalal
Followers: 0 Following: 0
Feeds
답변 있음
is it possible to perform a nested Batch?
Hi Rub, You can have a look at the following documentation regarding nested parallelism. It outlines all different scenarios a...
is it possible to perform a nested Batch?
Hi Rub, You can have a look at the following documentation regarding nested parallelism. It outlines all different scenarios a...
7일 전 | 0
답변 있음
Tunable parameters in Simulink code generation
Hi, You can declare the variales in Model Workspace of the library block. This way, it will be distinct for each instance of t...
Tunable parameters in Simulink code generation
Hi, You can declare the variales in Model Workspace of the library block. This way, it will be distinct for each instance of t...
7일 전 | 0
답변 있음
Best way to test Simulink model that doesn't change over time
Hey Matt, You can probably write a matlab script that simulates your model programatically using the 'sim' command. The inputs ...
Best way to test Simulink model that doesn't change over time
Hey Matt, You can probably write a matlab script that simulates your model programatically using the 'sim' command. The inputs ...
7일 전 | 0
답변 있음
Hyperspectral Image Compression with matlab
Hello Cev, You can use the 'dct2' function for compressing hyperspectral images. To compress hyperspectral images using the `d...
Hyperspectral Image Compression with matlab
Hello Cev, You can use the 'dct2' function for compressing hyperspectral images. To compress hyperspectral images using the `d...
대략 2개월 전 | 0
답변 있음
Huffman source coding with Simulink
Hi, Implementing Huffman code from scratch using Simulink Blocks can be a challenging task as calculating the frequencies of in...
Huffman source coding with Simulink
Hi, Implementing Huffman code from scratch using Simulink Blocks can be a challenging task as calculating the frequencies of in...
대략 2개월 전 | 0
답변 있음
HUFFMAN CODE SOURCE IN SIMULINK
Hi Isaura, Implementing Huffman code from scratch using Simulink Blocks can be a challenging task as calculating the frequencie...
HUFFMAN CODE SOURCE IN SIMULINK
Hi Isaura, Implementing Huffman code from scratch using Simulink Blocks can be a challenging task as calculating the frequencie...
대략 2개월 전 | 0
답변 있음
HELP Canonical Huffman coding
Hi Fyza, Please refer the following MATLAB Answer's for Canonical Hufffman Encoding: https://www.mathworks.com/support/searc...
HELP Canonical Huffman coding
Hi Fyza, Please refer the following MATLAB Answer's for Canonical Hufffman Encoding: https://www.mathworks.com/support/searc...
대략 2개월 전 | 0
답변 있음
STM32F4xx SPI Block Error
Hi, This error typically occurs when the code generation information file doesn't exist and can arise due to various reasons. P...
STM32F4xx SPI Block Error
Hi, This error typically occurs when the code generation information file doesn't exist and can arise due to various reasons. P...
대략 2개월 전 | 0
답변 있음
How to gather digital audio stream via STM32?
Hi Marek, It is possible to read audio signals from an STM board in Simulink. I am not sure if it is supported for the particu...
How to gather digital audio stream via STM32?
Hi Marek, It is possible to read audio signals from an STM board in Simulink. I am not sure if it is supported for the particu...
대략 2개월 전 | 0
답변 있음
How can I calculate the forces and moments on servo arms and couplers in a Stewart platform simulation using MATLAB
Hi, It is possible to analyze the forces and moments on the servo arms and couplers of your Stewart platform using MATLAB and ...
How can I calculate the forces and moments on servo arms and couplers in a Stewart platform simulation using MATLAB
Hi, It is possible to analyze the forces and moments on the servo arms and couplers of your Stewart platform using MATLAB and ...
대략 2개월 전 | 1
| 수락됨
답변 있음
how to set initial signal out from relay simulink
Hi Ahmad, To set the initial output of a Relay block in Simulink to be ON (1) under certain conditions, you can use a workarou...
how to set initial signal out from relay simulink
Hi Ahmad, To set the initial output of a Relay block in Simulink to be ON (1) under certain conditions, you can use a workarou...
대략 2개월 전 | 0
| 수락됨
답변 있음
Data Race Atomic Operations
Hi, Data races occur when multiple threads access shared data at the same time, with at least one thread performing a write ope...
Data Race Atomic Operations
Hi, Data races occur when multiple threads access shared data at the same time, with at least one thread performing a write ope...
대략 2개월 전 | 0
답변 있음
FIR filtering using firpm
Hi John, You can use the 'firpm' function to create a bandpass FIR filter to eliminate DC at 60 Hz and high-frequency noise. T...
FIR filtering using firpm
Hi John, You can use the 'firpm' function to create a bandpass FIR filter to eliminate DC at 60 Hz and high-frequency noise. T...
대략 2개월 전 | 0
답변 있음
design(fdesign.lowpass()) vs dsp.Filter(firpm())
Hi Axel, Designing a strict low-pass filter (LPF) with specifications like a 0.5 Hz passband, 1 Hz stopband, 0.01 passband ripp...
design(fdesign.lowpass()) vs dsp.Filter(firpm())
Hi Axel, Designing a strict low-pass filter (LPF) with specifications like a 0.5 Hz passband, 1 Hz stopband, 0.01 passband ripp...
대략 2개월 전 | 0
답변 있음
Terminate Code Generation Process
Hi David, You could encapsulate your scripts in try-catch blocks. Threfore, if the script errors out, you can debug it easily b...
Terminate Code Generation Process
Hi David, You could encapsulate your scripts in try-catch blocks. Threfore, if the script errors out, you can debug it easily b...
대략 2개월 전 | 0
답변 있음
How to create a component reference in the system composer from a simscape component
Hello Flavio, It is possible to create a simscape component that can be referencedn inside a System Composer application and h...
How to create a component reference in the system composer from a simscape component
Hello Flavio, It is possible to create a simscape component that can be referencedn inside a System Composer application and h...
대략 2개월 전 | 0
답변 있음
How to classify a folder of images?
Hi Mohammed, You can use the classification learner app to build a machine learning model to identify the currency denominatio...
How to classify a folder of images?
Hi Mohammed, You can use the classification learner app to build a machine learning model to identify the currency denominatio...
대략 2개월 전 | 0
답변 있음
Polyspace unbalanced/nested critical sections
Hello Mario, Polyspace Bug-Finder would be a more appropriate tool for analysing critical sections of your code for unbalanced...
Polyspace unbalanced/nested critical sections
Hello Mario, Polyspace Bug-Finder would be a more appropriate tool for analysing critical sections of your code for unbalanced...
대략 2개월 전 | 0
답변 있음
How to Fix Polyspace CodeProver Orange Overflow errors
Hi Dinesh, The unexpected orange integer overflow warning can be due to the below two reasons: Shared Variable: If you are p...
How to Fix Polyspace CodeProver Orange Overflow errors
Hi Dinesh, The unexpected orange integer overflow warning can be due to the below two reasons: Shared Variable: If you are p...
대략 2개월 전 | 0
답변 있음
How to create custom data type acronyms in code generation
Hi Marek, Unfortunately, Simulink Coder does not provide a direct way to customize the $A acronym for data types when using rep...
How to create custom data type acronyms in code generation
Hi Marek, Unfortunately, Simulink Coder does not provide a direct way to customize the $A acronym for data types when using rep...
대략 2개월 전 | 0
| 수락됨
답변 있음
With Simulink Embedded Coder is it possible to change base workspace variables?
Hello Remi, I believe you could try using Data-Stores for this usecase. They are quite useful when you want to have a common m...
With Simulink Embedded Coder is it possible to change base workspace variables?
Hello Remi, I believe you could try using Data-Stores for this usecase. They are quite useful when you want to have a common m...
대략 2개월 전 | 0
답변 있음
Simulink Embedded Coder Zero Initialization of Local Variables Not Working
Hi Furkan, There can still be some other optimizations which can remove the zero-initialization code. You could either disable...
Simulink Embedded Coder Zero Initialization of Local Variables Not Working
Hi Furkan, There can still be some other optimizations which can remove the zero-initialization code. You could either disable...
대략 2개월 전 | 0
답변 있음
Simulink model -Code generation
Hi Jerome, One way to achieve this is to use the “ssRTWGenIsCodeGen” function. This function detects whether the S-Function is ...
Simulink model -Code generation
Hi Jerome, One way to achieve this is to use the “ssRTWGenIsCodeGen” function. This function detects whether the S-Function is ...
대략 2개월 전 | 0
답변 있음
Embedded Coder C-Code Abruf von Daten
Hallo Markus, Leider bin ich mit Deutsch nicht vertraut und werde auf Englisch antworten. The rtw_solver.h and rtw_continuous...
Embedded Coder C-Code Abruf von Daten
Hallo Markus, Leider bin ich mit Deutsch nicht vertraut und werde auf Englisch antworten. The rtw_solver.h and rtw_continuous...
대략 2개월 전 | 1
답변 있음
Possible Ways to Modifying "Prefix" of Memory Map Header on generated AUTOSAR Code
Hi Onur, The pre and post statements you see are not because of the memory section defined in the CSCDesigner app but to be co...
Possible Ways to Modifying "Prefix" of Memory Map Header on generated AUTOSAR Code
Hi Onur, The pre and post statements you see are not because of the memory section defined in the CSCDesigner app but to be co...
대략 2개월 전 | 0
답변 있음
Regarding the connection of cloud or router to simulink blocks.
Hi Saranya, Yes, it is possible to connect Simulink to external data sources, including routers or cloud services, to get liv...
Regarding the connection of cloud or router to simulink blocks.
Hi Saranya, Yes, it is possible to connect Simulink to external data sources, including routers or cloud services, to get liv...
3개월 전 | 0
| 수락됨
답변 있음
MEX compilation failed with message: C compiler produced errors. See build log for compiler error:
Hi Jeevan, This issue might be happening because the mex compiler is unable to find the CPP file for your function.This might h...
MEX compilation failed with message: C compiler produced errors. See build log for compiler error:
Hi Jeevan, This issue might be happening because the mex compiler is unable to find the CPP file for your function.This might h...
4개월 전 | 0
답변 있음
Inconsistent SIL and Normal mode simulation results (Equivalence Criteria Failing )
The issue you are facing is an expected behavior of SIL simulation. Consider a model that references a child model using the “M...
Inconsistent SIL and Normal mode simulation results (Equivalence Criteria Failing )
The issue you are facing is an expected behavior of SIL simulation. Consider a model that references a child model using the “M...
4개월 전 | 0
답변 있음
Importing Excel data into Simulink for giving as input signal - Contains Enumeration values also
Hi Varunjith, For the excel sheet to comply with Signal builder while importing, it should not contain non-numeric values. So,...
Importing Excel data into Simulink for giving as input signal - Contains Enumeration values also
Hi Varunjith, For the excel sheet to comply with Signal builder while importing, it should not contain non-numeric values. So,...
4개월 전 | 0
답변 있음
How can I swap states in a simulink "for each" system?
Hi James, The issue you're facing is likely due to the fact that the state update in your simulation happens in discrete time s...
How can I swap states in a simulink "for each" system?
Hi James, The issue you're facing is likely due to the fact that the state update in your simulation happens in discrete time s...
4개월 전 | 0