Answered
Computer Vision toolbox streaming functionality
It looks like the <http://www.mathworks.com/help/toolbox/dsp/ref/frommultimediafile.html From Multimedia File> block supports MM...

14 years ago | 0

| accepted

Answered
creating a .mdl file.
Either: >> open_system(new_system)) Or: >> simulink File->New->Model

14 years ago | 1

Answered
Customizing Stateflow Output Messages
I don't believe such functionality is currently available. Please consider putting in an enhancement request with MathWorks Tech...

14 years ago | 0

Answered
Docking the simulink window
I don't think this is currently possible.

14 years ago | 0

| accepted

Answered
adding an external file, during automatic generation of a dll
Where did you add your file to (in what directory), and how did you include it in the generated makefile? I would recommend addi...

14 years ago | 0

Answered
How do I get a C++ structure 'behind' a libpointer?
Do you get anything useful by trying: par.s_Results.Value;

14 years ago | 0

Answered
visual studio 2010 c++ to matlab engine link errors
If you are using 64-bit MATLAB, all the libraries in C:\Program Files\MATLAB\R2010a\extern\lib\win64\microsoft are also 64-bit b...

14 years ago | 0

Answered
How can I come to know whether a stateflow chart is open from command prompt?
You can use the Stateflow API to do this: myModel = 'sf_car'; open_system(myModel); rt = sfroot; m = rt.find('...

14 years ago | 0

Answered
How to change parameters value on simulink model trough GUI ?
You may find this documentation example useful: <http://www.mathworks.com/help/techdoc/creating_guis/f6-8865.html A GUI to Set S...

14 years ago | 0

Answered
Simulink Modelsim Cosimulation Error
I think the error that you're seeing occurs if you are using an unsupported version of Modelsim (see http://www.mathworks.com/su...

14 years ago | 0

| accepted

Answered
adc block in simulink library
Which library did you get the block from? Click the "Help" button on the block dialog to see where the input is read from. I bel...

14 years ago | 0

Answered
How do I correct this Linker error building a mex function? LINK : fatal error LNK1561: entry point must be defined
Do you have the required mexFunction entry point defined in one of your source files?

14 years ago | 0

| accepted

Answered
Best way to call embedded C library function from Simulink model (new to Simulink)
I don't know if this is the "best" way to achieve what you need, but one way I can think of is to use the <http://www.mathworks....

14 years ago | 0

Answered
how to fix this bug
Check if you see simstruc_types.h under $matlabroot/simulink/include/simstruc_types.h on your computer, where $matlabroot is the...

14 years ago | 0

Answered
How to use variable present in workspace in GUI
Perhaps you could try running this line to get the variable from the base workspace to the function workspace: net = eval...

14 years ago | 0

Answered
Linking MATLAB 2008 to C++
MATLAB does not run on any real-time operating systems, so the concept of real-time with MATLAB is a little shaky. You could ach...

14 years ago | 0

| accepted

Answered
How to get the base workspace varibles in a function
Do you mean that you just want to get the list of variables in the base workspace from your function? How about: evalin('b...

14 years ago | 1

| accepted

Answered
Embeding C Code to Matlab
How exactly do you plan to achieve #1? Do you write to a port/file from the C binary that MATLAB should read? My choice would...

14 years ago | 0

Answered
grt.tlc compiling error
Alessandro: This appears to be a bug. Please report this to MathWorks Tech Support and see if they can provide a resolution.

14 years ago | 0

| accepted

Answered
matlab for linux generate a c++ shared library
I believe it should. A similar command is shown under "For a C++ Application on UNIX" at http://www.mathworks.com/help/toolbox/c...

14 years ago | 0

Answered
How to downgrade Simulink model version?
SaveAs should ideally convert the model so that it loads without warnings. Could you specify what warnings you see? In some case...

14 years ago | 0

| accepted

Answered
TI CCS 5 and MATLAB 2010
I don't believe there is any direct support for CCS v5.0 with Embedded Coder currently, but you might be able to use the <http:/...

14 years ago | 0

| accepted

Answered
Deployment for 32 bits executable application with Matlab 2011b and Windows 7
The "Unable to find a suitable install area" seems to suggest that you do not have 32-bit MATLAB installed under the same instal...

14 years ago | 0

Answered
Simulink xPC C-function static variable issues
I would recommend declaring D-Work vectors in your S-functions, and work with that memory from your C-function (ie. modify it to...

14 years ago | 0

Answered
Is it possible in MATLAB to copy and paste .mdl blocks to Word2007 environment?
I don't have much experience with this, but I think what you need is the <http://www.mathworks.com/products/SL_reportgenerator/ ...

14 years ago | 1

Answered
How to run Simulink command without opening those model windows?
Use load_system instead of open_system. After you finish with the model, use close_system to unload the model from memory.

14 years ago | 2

| accepted

Answered
Using the 32-bit matlab api with a 64-bit installation
It seems likely that your 64-bit MATLAB is registered as a COM server, but your 32-bit installation isn't. You could try manuall...

14 years ago | 0

Answered
Using the MATLAB compiler
Perhaps you could try running your executable from a system command window (as opposed to simply double-clicking on it), to see ...

14 years ago | 0

Answered
Can I pass the model name into the ([],[],[],'compile') command?
Try: function compile(MyModel) eval([MyModel '([],[],[],''compile'')']);

14 years ago | 1

| accepted

Answered
ERROR: Number of variables exceeds number of equations. Check for missing reference node.
I think you need to insert a Ground block also.

14 years ago | 0

| accepted

Load more