回答済み
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年以上 前 | 0

| 採用済み

回答済み
creating a .mdl file.
Either: >> open_system(new_system)) Or: >> simulink File->New->Model

14年以上 前 | 1

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

14年以上 前 | 0

回答済み
Docking the simulink window
I don't think this is currently possible.

14年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

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

14年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 1

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 2

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

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

14年以上 前 | 1

| 採用済み

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

14年以上 前 | 0

| 採用済み

さらに読み込む