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

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

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

| 採用済み

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

| 採用済み

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

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

| 採用済み

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

回答済み
script in simulink
See http://www.mathworks.com/matlabcentral/answers/21160-implementig-user-define-function-in-simulink

14年以上 前 | 0

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

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

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

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

14年以上 前 | 0

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

14年以上 前 | 1

| 採用済み

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

| 採用済み

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

| 採用済み

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

| 採用済み

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

| 採用済み

回答済み
'Pop-up' text box - SIMULINK
How about: helpdlg(sprintf('Some text.\nMore text.'))

14年以上 前 | 0

| 採用済み

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

| 採用済み

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

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

| 採用済み

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

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

| 採用済み

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

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

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

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

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

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

| 採用済み

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

さらに読み込む