Beantwortet
Can I use MATLAB Builder JA to run simulations created in Simulink?
MATLAB Compiler, and consequently, MATLAB Builder JA does not support Simulink. The list of supported functionality with MATLAB ...

mehr als 15 Jahre vor | 0

| akzeptiert

Beantwortet
Convert c++ structs to mwArray, to use in c++ shared library
See <http://www.mathworks.com/support/solutions/en/data/1-509ESY/index.html Technical Solution# 1-509ESY>

mehr als 15 Jahre vor | 0

Beantwortet
Can I call quadprog() using Embedded MATLAB from Simulink?
<http://www.mathworks.com/help/toolbox/eml/ug/bq1h2z7-9.html#bq1h2z7-11 This> is the list of functions supported with Embedded M...

mehr als 15 Jahre vor | 1

Beantwortet
emlc error in converting M-code to C-code
You need to get one of the supported compilers and then run mex -setup: http://www.mathworks.com/support/compilers/release2008a/...

mehr als 15 Jahre vor | 1

| akzeptiert

Beantwortet
executable file without supporting file?
You can check the <http://www.mathworks.com/help/toolbox/compiler/bsl9c8_.html#bsl9d4s Embed the MCR in the package> option in d...

mehr als 15 Jahre vor | 0

Beantwortet
Redirection using Unix 'ls' list command
The bang(!) operator and system command essentially redirect the command to the system shell - is it likely that you have a Wind...

mehr als 15 Jahre vor | 0

Beantwortet
Extracting Simulink Data to C-Library during runtime (Book suggestion?)
You could use the MATLAB Engine API to call into MATLAB from an external C-library: <http://www.mathworks.com/help/techdoc/matla...

mehr als 15 Jahre vor | 0

Beantwortet
How do I read Text from HTML file ?
if the HTML file consists of valid XML, you might be able to use <http://www.mathworks.com/help/techdoc/ref/xmlread.html xmlread...

mehr als 15 Jahre vor | 3

Beantwortet
Sending Simulink Model to third party Customer
See answer to <http://www.mathworks.com/matlabcentral/answers/552-protecting-a-simulink-block-with-a-password Question#552>

mehr als 15 Jahre vor | 0

Beantwortet
Initialization in Simulink
You can also store data in the <http://www.mathworks.com/help/toolbox/simulink/ug/f4-140122.html Model Workspace> if you'd like ...

mehr als 15 Jahre vor | 0

Beantwortet
Taking waveforms from simulink to arbitary waveform generator
You can log the signal to workspace using To Workspace block, and then use the <http://www.mathworks.com/products/instrument/?s_...

mehr als 15 Jahre vor | 0

Beantwortet
Why am I getting an error about singularities when using an Integer block?
See the answer to a similar question here: <http://www.mathworks.com/matlabcentral/answers/867-simulink-error Question#867>

mehr als 15 Jahre vor | 1

| akzeptiert

Beantwortet
SimMechanics Link
Did you try: install_addon('smlink.r2010b.win32.Zip') If this doesn't help, could you point to the page you downloaded these...

mehr als 15 Jahre vor | 4

| akzeptiert

Beantwortet
Can I make a linux library on Windows using MinGW?
Although MEX files are similar to shared libraries in their binary form, they have only one specific entry point (namely, mexFun...

mehr als 15 Jahre vor | 0

Beantwortet
MATLAB crashes with C++ Class used in mex-file
The section "Memory Considerations For Class Destructors" recommends not to clear memory that is managed by MATLAB. In other wor...

mehr als 15 Jahre vor | 0

| akzeptiert

Beantwortet
Simulink time samples
It is likely that the change of parameter is causing a zero-crossing to occur around t=2, thus forcing the solver to take smalle...

mehr als 15 Jahre vor | 2

| akzeptiert

Beantwortet
Can I generate PLC code from an S-function using PLC Coder?
The "Support noninlined S-functions" option only appears for ERT-based targets - since PLC Coder is not an ERT-based target, thi...

mehr als 15 Jahre vor | 0

Beantwortet
build a output.dimension since inputport.data
As long as the number of dimensions of your output do not change, and you are able to determine the largest size for each dimens...

mehr als 15 Jahre vor | 0

| akzeptiert

Beantwortet
"From Workspace" time delay
I am not sure if the From/To Workspace blocks lock down the workspace variable at any point during the simulation, but passing d...

mehr als 15 Jahre vor | 0

Beantwortet
S-function or embedded MATLAB function
In terms of performance, I don't believe that there is a significant difference between Embedded MATLAB Function and C/C++ S-fun...

mehr als 15 Jahre vor | 5

| akzeptiert

Beantwortet
How to send data to a block continuously, like through clock block in simulink.
The <http://www.mathworks.com/help/toolbox/simulink/slref/fromworkspace.html 'From Workspace'> block is specifically designed to...

mehr als 15 Jahre vor | 2