Beantwortet
GUI for basic operations in Boolean algebra
Like Adam mentioned, you can set breakpoints to run your code one line at a time in order to find the problem. Alternatively,...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Can't "coder.loadDeepLearningNetwork" import a custom network model?
The crash in R2019b and error in R2019a are not expected. Please reach out to MathWorks Technical Support with the reproduction...

fast 5 Jahre vor | 0

Beantwortet
Can't check out MATLAB coder license.
Please reach out to our Installation and Licensing Team for assistance with this issue: https://www.mathworks.com/support/conta...

fast 5 Jahre vor | 0

Beantwortet
Convert C++ Code to Matlab Code with MATLAB 2019a
If your overall goal is to convert C++ code to MATLAB code, yes, manual conversion is still required in R2019a. However, if y...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
Generation of C code from simulink
Based on the error message, Hd (a dsp.IIRFilter) contains a member that is a handle class, which let multiple names refer to the...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
how to convert matlab code to c with nonsuported functions for code generation
Please see Walter's comment, with one difference: As of R2019a, arrayfun is supported for code generation, with limitations: h...

mehr als 5 Jahre vor | 0

Beantwortet
Complete Example for Passing Array by Reference to C for Processing
Thanks for the recommendation! We're working on improving our documentation and this is valuable feedback. Let's see if I ca...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
Matlab coder prevent memcpy/ name alias without copy
If Structure1.structure2.list is a Handle Class, you can assign to another name (myList) and modify the original object via myLi...

mehr als 5 Jahre vor | 0

Beantwortet
What is the right way to work with Matlab coder dynamic and static allocations?
There are two recommended ways to avoid large stack usage and dynamic allocation in multiple iterations of the algorithm. For b...

mehr als 5 Jahre vor | 2

| akzeptiert

Beantwortet
how to generate MEX from package function in MATLAB?
Functions within packages are not supported as entry-point functions. (Current as of R2018b) See the following question/answe...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
Online Parameter Estimation of Plant model
The System Identification Toolbox has command-line and Simulink functionality for Online Parameter Estimation: https://www.math...

mehr als 5 Jahre vor | 0

Beantwortet
Rte_Type.h file in generated code for AUTOSAR with Matlab function in Simulink
Try setting the DataScope for the Enum to "Exported": <https://www.mathworks.com/help/simulink/ug/using-enumerated-data-in-si...

mehr als 6 Jahre vor | 0

Beantwortet
DAQ USB 6008 is NOT RECOGNIZED
Make sure the Driver version is compatible with your release of MATLAB. Click "Third-Party Requirements" on the right side of fo...

mehr als 6 Jahre vor | 0

Beantwortet
how to make phased.CosineAntennaElement element pattern in z-direction
A linear array or planar array can be used to <https://www.mathworks.com/help/phased/ref/phased.cosineantennaelement-system-obje...

mehr als 6 Jahre vor | 0

Beantwortet
How can I choose the mex c object file (.o) output location?
To debug, you need to add the debug flag -g so that mex knows to compile with debugging symbols: mex -g -v mxisscalar.c -ou...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
C++ Flags in Legacy Code Tool
While passing '-std=c++11' to the Legacy Code Tool is not currently supported, I have tested the following workaround: # Cons...

fast 7 Jahre vor | 0

Beantwortet
Getting MATLAB to accept input from external keypad
Since MATLAB displays '4' when you type it on the external keypad, MATLAB does receive signals from the external keypad. This...

fast 7 Jahre vor | 0

Beantwortet
Script to access Amazon S3 files
Since S3 uses a RESTful architecture, use 'webread' and 'webwrite' to access the S3 bucket. webread: <https://www.mathworks.c...

fast 7 Jahre vor | 0

Beantwortet
How can I skip some lines in a text file in order to reach a specific one which is in an undefined position?
Use 'fgetl' and 'isequal' to check each line against the specific one. Consider the following text file 'find.txt', and the d...

fast 7 Jahre vor | 0

Beantwortet
How does the Lasso function handle NaN values?
The lasso function ignores all rows (observations) with NaN values. This can be seen in the code for 'lasso' near line 240 wh...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
Custom C/C++ code block in Simulink Desktop Realtime
Yes, this is possible. See the following page for an example: <https://www.mathworks.com/help/simulink/examples/c-object-meth...

fast 7 Jahre vor | 0

Beantwortet
Distance between Global Maximum of a Wave Pattern and next Consecutive Maximum/Minimum
To find the next minimum and maximum after the global maximum, use the "findpeaks" function, but limit the data to after the glo...

etwa 7 Jahre vor | 1