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

fast 14 Jahre vor | 2

Beantwortet
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....

fast 14 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 14 Jahre vor | 1

| akzeptiert

Beantwortet
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...

fast 14 Jahre vor | 0

Beantwortet
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...

fast 14 Jahre vor | 0

Beantwortet
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...

fast 14 Jahre vor | 1

Beantwortet
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...

fast 14 Jahre vor | 1

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

fast 14 Jahre vor | 0

Beantwortet
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...

fast 14 Jahre vor | 0

Beantwortet
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 ...

fast 14 Jahre vor | 1

Beantwortet
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...

fast 14 Jahre vor | 1

Beantwortet
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 ...

fast 14 Jahre vor | 2

| akzeptiert

Beantwortet
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...

fast 14 Jahre vor | 1

Beantwortet
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...

fast 14 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 14 Jahre vor | 1

Beantwortet
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...

fast 14 Jahre vor | 0

Beantwortet
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...

fast 14 Jahre vor | 0

Beantwortet
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")...

fast 14 Jahre vor | 3

| akzeptiert

Beantwortet
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);...

fast 14 Jahre vor | 0

Beantwortet
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...

fast 14 Jahre vor | 1

Beantwortet
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...

fast 14 Jahre vor | 0

Beantwortet
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...

fast 14 Jahre vor | 0

Beantwortet
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...

fast 14 Jahre vor | 1

Beantwortet
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/...

fast 14 Jahre vor | 0

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

fast 14 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 14 Jahre vor | 1

Beantwortet
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...

fast 14 Jahre vor | 0

Beantwortet
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...

fast 14 Jahre vor | 0

Beantwortet
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...

fast 14 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 14 Jahre vor | 0

Mehr laden