A répondu
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...

environ 4 ans il y a | 1

| A accepté

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

environ 4 ans il y a | 0

A répondu
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...

environ 5 ans il y a | 0

A répondu
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...

plus de 5 ans il y a | 0

A répondu
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...

plus de 5 ans il y a | 0

A répondu
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...

plus de 5 ans il y a | 1

| A accepté

A répondu
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...

plus de 5 ans il y a | 0

A répondu
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...

plus de 5 ans il y a | 0

A répondu
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...

plus de 5 ans il y a | 0

A répondu
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...

plus de 5 ans il y a | 0

A répondu
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...

plus de 5 ans il y a | 0

| A accepté

A répondu
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...

plus de 5 ans il y a | 0

A répondu
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...

plus de 5 ans il y a | 1