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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 25

| akzeptiert

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

mehr als 14 Jahre vor | 2

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 1

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 20

| akzeptiert

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 1

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 12

| akzeptiert

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

mehr als 14 Jahre vor | 5

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

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

mehr als 14 Jahre vor | 0

| akzeptiert

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

mehr als 14 Jahre vor | 1

Mehr laden