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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 1

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 1

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

mehr als 14 Jahre vor | 2

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 0

| akzeptiert

Mehr laden