Answered
Find name of MPT signal of input line
This might help: >> signals = find_system('modelname', 'FindAll', 'on', 'RegExp', 'on', 'Type', 'line', 'Name', '\w') ...

13 years ago | 2

Answered
MCR using custom Java archives (jar)
I don't have personal experience with this, but according to <http://www.mathworks.com/support/solutions/en/data/1-3Q6KZW/index....

13 years ago | 0

| accepted

Answered
control parameters of a simulink block
In general, this is not a supported workflow, please see <http://blogs.mathworks.com/seth/2011/03/08/how-do-i-change-a-block-par...

13 years ago | 1

| accepted

Answered
how can we create simulink block using m file in matlab 2012a?
You can use the <http://www.mathworks.com/help/toolbox/simulink/slref/interpretedmatlabfunction.html Interpreted MATLAB Function...

13 years ago | 0

Answered
Where can I get a course of simulink for use of generating c code for DSP ,PPT best.
There might be other resources, but you might find some recorded webinars of interest here: http://www.mathworks.com/company/eve...

13 years ago | 0

Answered
How can I show all block parameters in my project ?
Sorry, your question is not clear to me. What property did you change exactly under Block Properties>Block Annotation? Please se...

13 years ago | 1

Answered
Buses as inputs/outputs in C MEX S-Functions and vectors as structure members
First, std::vector is a C++ data structure, so you can't use them inside C S-functions, you'll need to use C++ S-functions. Seco...

13 years ago | 1

Answered
Generation of executables from simulink model
Yes, you do need to get a separate license for RTW (now called Simulink Coder).

13 years ago | 0

Answered
How can I use a user-defined MATLAB class as a Simulink signal datatype?
Please see <http://www.mathworks.nl/matlabcentral/answers/40716-how-many-ways-can-we-create-a-user-defined-data-type this previo...

13 years ago | 0

Answered
My embedded function is not updating the value in the next step calculated from previous step
From looking at your snapshots, the problem you described "it did not take the previous step value rather always took initial D ...

13 years ago | 1

Answered
Using set_param on parameter 'ProdHWDeviceType'
I think it's because you have a typo while indexing into the cell array modelNames. Instead of using modelNames{i}, you are usin...

13 years ago | 1

Answered
converting M-file into a block function in simulink-2
You have not written an S-function, but just a MATLAB function in a format that Simulink will not understand. Please go through ...

13 years ago | 2

| accepted

Answered
rtwbuild using Parallel Computing Toolbox
Yes, I think the parallel build feature that was <http://blogs.mathworks.com/seth/2009/03/31/parallel-computing-with-simulink-mo...

13 years ago | 1

Answered
Store a Vector as csv-File in a Mex File
<http://www.mathworks.com/help/toolbox/simulink/sfg/ssgetpwork.html ssGetPWork> takes only one input argument, and returns a voi...

13 years ago | 0

| accepted

Answered
How to make it possible to specify filter weights in LMS filter?
Do you mean that you want the initial filter weights to be from an input port (because Adaptive filters update filter coefficien...

13 years ago | 1

Answered
Supposed MATLAB Compiler xls or csv data to .exe
Yes MATLAB Compiler <http://www.mathworks.com/products/compiler/supported/compiler_support.html supports all basic MATLAB functi...

13 years ago | 0

Answered
Creating C code from matlab with changing data input size.
I think you need to specify the type of the input using: >> codegen test -args {coder.typeof(double(0), [1 Inf])} [ <ht...

13 years ago | 0

Answered
Question about the use of "Answers"
Both questions have been discussed previously: # I don't believe the ability to follow threads (that you have not "answered")...

13 years ago | 3

| accepted

Answered
Generate mex code for a MATLAB function containing other mex functions (R2011a)
How about just: function R = getRotation(axis, angleRad) coder.extrinsic('getSuperCross_mex'); temp = zeros(3,3);...

13 years ago | 0

Answered
how to get defined simulation parameters for a new simulink window....
An easier way might be to maintain a <http://www.mathworks.com/help/releases/R2011b/toolbox/simulink/ug/f11-35796.html Configura...

13 years ago | 1

Answered
Coder and VS C#
Please see <http://www.mathworks.com/help/toolbox/coder/ug/btcyhzd-1.html Using a MATLAB Coder Dynamic Library in a Simple Micro...

13 years ago | 0

Answered
Why did my shared component not work?
Looks like you might be missing some DLL dependencies. You can try profiling that DLL with <http://www.mathworks.com/support/sol...

13 years ago | 0

Answered
How can I convert a visual basic code into matlab?
You should probably just create a COM component from your Visual Basic code and call it from MATLAB. See <http://undocumentedmat...

13 years ago | 1

Answered
How can I define which .Net framework shall a deployed MATLAB function use?
Are you using a MATLAB version older than R2011a? If yes, this may be related to <http://www.mathworks.com/support/solutions/en/...

13 years ago | 0

Answered
S-Function return types
The compiler error occurs, because in your specification: double y1 = TPh(double u1[], double u2[]) The output 'y1' is r...

13 years ago | 0

| accepted

Answered
Doubt In Simulink Commands
I think that simply using a Switch block for this won't do - there might be several ways of solving this problem (one of which m...

13 years ago | 1

Answered
Matlab Coder: Build Failed: The system cannot find the path specified.
T-squared: I'm quite stumped at this point. There might be a variety of reasons, so I would recommend contacting <http://www.mat...

13 years ago | 0

Answered
How to 'effectively' stop outputing signals from the subsystem when it is not triggered on or not enabled?
There is no way to "stop" outputting signals from any block in Simulink. The Simulink Engine expects blocks to produce some outp...

13 years ago | 0

Answered
From Where Can I Get Last Version of "commblkbernoullisrc2.m"?
commblkbernoullisrc2.m is a part of the <http://www.mathworks.com/products/communications/ Communications System Toolbox>, so th...

13 years ago | 0

| accepted

Answered
Blocks Configuration for CRC calculation in Simulink
Perhaps <http://www.mathworks.com/help/comm/examples/bluetooth-full-duplex-voice-and-data-transmission.html this demo> will help...

13 years ago | 0

Load more