Answered
Embedded systems Omap3530evm and Dm355evm
You can use MATLAB Coder to convert your MATLAB code into C code, as long as you are using only the <http://www.mathworks.com/he...

14 years ago | 0

Answered
matlab2011 - simulink, Code Composer Studio (CCS) v3.1, C6713 DK
I think the corresponding TLC files are idelink_ert.tlc. and idelink_grt.tlc.

14 years ago | 0

Answered
Generating Standalone Executable file Using Matlab Coder
There are two separate MathWorks' products that you are seemingly confused between: 1. The "mcc" (and "deploytool") command b...

14 years ago | 25

| accepted

Answered
Converting cell function into c/c++ code when using MATLAB Coder.
Like the error message states, cell arrays are not supported for code-generation in general. If your cell arrays only hold numbe...

14 years ago | 2

| accepted

Answered
Can't compile MEX-files under OS X Lion... even with patch!
Try running: mex -v yprime.c This should give you a verbose output of the "mex" command that should give you a better i...

14 years ago | 0

Answered
Simulink - Rate Transition
I think you should set your solver step size to 1ms. Simulink will determine that the blocks in Task1 have to be run only every ...

14 years ago | 0

| accepted

Answered
fatal error LNK1104: cannot open file 'libmx.lib libmat.lib libeng.lib'
Are you attempting to link against libmx.lib libmat.lib libeng.lib in your Linker options? I don't think those are needed. You s...

14 years ago | 0

Answered
script in simulink
See http://www.mathworks.com/matlabcentral/answers/21160-implementig-user-define-function-in-simulink

14 years ago | 0

Answered
Compiler error
Assuming that you have 64-bit Windows and 64-bit MATLAB, have you installed x64 compilers with your Visual Studio? By default, o...

14 years ago | 0

Answered
Windows Standalone Porgram error 'Too many output arguments'
I'm not familiar with this error, but perhaps this Tech Solution is relevant: http://www.mathworks.com/support/solutions/en/data...

14 years ago | 0

Answered
Matlab + C/C++ Development in Eclipse, invalid arguments?
The error message is from Eclipse, and not clear. What you could try is to first use the mex command in MATLAB itself using the ...

14 years ago | 1

Answered
About simulink model error
According to Google Translate, the error translates to: Not an internal or external command, operable program or batch file...

14 years ago | 0

Answered
Serial to Parallel Conversion
Try the <http://www.mathworks.com/help/toolbox/simulink/slref/reshape.html Reshape> block.

14 years ago | 1

| accepted

Answered
Could not find MWArray.dll in MATLAB root version 2008a
In my version (R2011b), I see it in $matlabroot\toolbox\dotnetbuilder\bin\win64\v2.0. Try doing a search under the MATLAB instal...

14 years ago | 1

| accepted

Answered
parfor errors when file is compiled
This type of error occurs if you are attempting to compile a script instead of a function. Try changing your code to: funct...

14 years ago | 0

| accepted

Answered
problem with sine-wave and scope component in simulink
I think the issue is that Simulink is not using a small enough time-step so that the signal is completely rendered on the scope ...

14 years ago | 20

| accepted

Answered
How to change the default style of Parameters in Simulink when edit mask?
Did you mean that you want to create multiple tabs in the dialog? The ability for users to do this was introduced in R2009b, so ...

14 years ago | 1

| accepted

Answered
'Pop-up' text box - SIMULINK
How about: helpdlg(sprintf('Some text.\nMore text.'))

14 years ago | 0

| accepted

Answered
How to output all my Simulink model signals' Output data type?
You can use the CompiledPortDataType property of block ports to get the port datatype. outportBlks = find_system('modelname...

14 years ago | 1

| accepted

Answered
Matlab figure to jar file
I don't have any Java experience, but this is what I see in javawebfigure.m: import com.mathworks.toolbox.javabuilder.int...

14 years ago | 0

Answered
running m-file from Simulink
# Yes, you can configure <http://www.mathworks.com/help/toolbox/simulink/ug/f4-122589.html Model Callback Functions> to call MAT...

14 years ago | 12

| accepted

Answered
Add a hyperlink in excell through matlab
I modified an example in the documentation to add one link to a specific cell (Sheet1, Cell I2) in an Excel file: exl = actxs...

14 years ago | 5

Answered
about step input dimension in simulink
The default datatype in MATLAB and Simulink is double (the <http://www.mathworks.com/help/toolbox/simulink/slref/step.html Step>...

14 years ago | 0

| accepted

Answered
Debugging c# dll in Matlab
It doesn't seem like this functionality is currently available. I would recommend calling/writing MathWorks Tech Support and ask...

14 years ago | 0

Answered
"Invalid MEX-file" when using curve fitting toolbox compiled
The issue is related to runtime, so it seems like more of a path issue, than a compile/link-time issue. Did you say that deployt...

14 years ago | 0

Answered
Error while creating MAT files from C++
You need to perform the compilation/linking process using the MEX command and an options-file that ships with MATLAB. I would re...

14 years ago | 0

Answered
C# MWArray is empty
Your function vse1 doesn't have any output arguments declared: function vse1() If you have an output argument, that lin...

14 years ago | 0

Answered
Real time robot control from C# application
You can call into MATLAB from C# by starting MATLAB as a <http://www.mathworks.com/help/techdoc/matlab_external/brd0v3w.html COM...

14 years ago | 0

Answered
Simulink.Parameter Trouble
Do you mean that you want to create a Simulink.Parameter object that has the same name as that of the input argument in its call...

14 years ago | 0

| accepted

Answered
A C/C++ program calls a MATLAB program which has "addpath"
Adding the "if ~isdeployed" actually prevents the addpath commands from running in Dist.exe, because isdeployed returns true fro...

14 years ago | 1

Load more