답변 있음
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

더 보기