回答済み
i want to create a error msage.
Use <http://www.mathworks.com/help/techdoc/ref/exist.html exist> if (~exist(filename,'file')) msgbox('File Not found'...

約13年 前 | 0

| 採用済み

回答済み
Increment file name by adding numbers in a loop
Easy way to increment your filename is: filename = sprintf('%s_%d','filename',k)

約13年 前 | 6

| 採用済み

回答済み
Arduino to Matlab Real time plotting
The code above looks like an arduino sketch. Whats you MATLAB code to interface with it? Have you looked at <http://www.mathw...

約13年 前 | 0

回答済み
The Data Acquisition Toolbox does not recognize my PCI-DAC6703 board
Have you installed InstaCal from measurement computing?

約13年 前 | 0

回答済み
How to add variables created in function to workspace?
one option is <http://www.mathworks.com/help/releases/R2011a/techdoc/ref/assignin.html assignin>

約13年 前 | 1

回答済み
Convert A String Into a MATLAB Variable Name
There is a MATLAB function to do this: <http://www.mathworks.com/help/releases/R2011a/techdoc/ref/genvarname.html genvarname> ...

約13年 前 | 0

回答済み
Serial Port & Bluetooth
You can read/write on the same COM port. The trick to checking whether data is being sent or received by the serial port and you...

約13年 前 | 0

| 採用済み

回答済み
set deploytool for compile activex
You can compile GUI's and other MATLAB programs that make calls to activex controls into exe's using the MATLAB compiler. What y...

約13年 前 | 2

| 採用済み

回答済み
Running Matlab script from Excel
With the spreadsheet Link EX installed, you should be call your custom MATLAB code using the Add-in. Click on MATLAB Add-in ...

約13年 前 | 0

| 採用済み

回答済み
Mex File problems with 2010a
<http://www.mathworks.com/matlabcentral/answers/9479-c-0x-in-mex try this answer> Also google, there are solutions to this

約13年 前 | 0

回答済み
CPLEX-MATLAB LICENSE
I would suspect that this would depend on the license agreement with CPLEX

約13年 前 | 0

回答済み
MATLAB with JAVA
I am not sure what you mean by a simple signal in Java. But here is a simple example: --> Java Code import java.lang.*; ...

約13年 前 | 0

| 採用済み

回答済み
MATLAB with Java ?
Yes, there are multiple ways to work with Java from MATLAB. You can code up a java classes and then call them from MATLAB. <h...

約13年 前 | 0

| 採用済み

回答済み
MEX and OpenGL
You don't need to create MEX files since you will be running your application in C. You will need to make use of the MATLAB Eng...

約13年 前 | 1

回答済み
Matlab Compiler And Simulink
The sim command is an unsupported command for the MATLAB Compiler and cannot be compiled. The general strategy in such cases ...

約13年 前 | 1

回答済み
Saving to TXT from standalone executable
Typically as mentioned above, the text file will be included in the CTF archive, if it was added as an additional file in deploy...

約13年 前 | 0

| 採用済み

回答済み
Compiling Windows Exe from a Mac
Cross compiling is not possible. You will need to install the MATLAB Compiler on the Windows machine to create an executable. ...

約13年 前 | 0

| 採用済み

回答済み
Problem with external matlab to VC++ 2008
You need to add an extra directory to the system PATH. I think you might need to add [matlabroot]\bin\win64|32

約13年 前 | 0

回答済み
How can I plot a bode diagram with random color?
colors =['r','b','g','y','m','k']; c = ceil(6*(rand)) bode(sys,colors(c)) This will pseudo randomly choose one o...

約13年 前 | 1

回答済み
How can I plot a bode diagram with random color?
bode(sys,'r') You can always write some code to pick a random color from a set of colors that you would like

約13年 前 | 0

回答済み
Build application Error
Try and register MATLAB as a COM server. You should be able to do so by following either of the links: <http://www.mathworks....

約13年 前 | 1

回答済み
Debugging Visual C++ DLL used with Matlab
I am assuming you are using loadlibrary! If that's the case, then you can load your VS project (that created the C/C++ DLL) a...

約13年 前 | 2

| 採用済み

回答済み
Deploying MatLab App to Java
Yes! The MCR is the MATLAB Compiler Runtime which is required for the compiled MATLAB functions to be executed. A simple exampl...

約13年 前 | 0

回答済み
Bluetooth Communication
As mentioned above, direct bluetooth communication does not work. However, if your bluetooth supports Serial Profile (SPP) that ...

約13年 前 | 0

| 採用済み

回答済み
Do not have sufficient access permissions for the Matlab application folder to change the file /Applications/MATLAB_R2010a.app/toolbox/local/classpath.txt
Another temporary solution might be to use javaaddpath ('path to the JAR file') once MATLAB starts up. You can even put that ...

約13年 前 | 0

回答済み
articulated arm
Check this <http://www.mathworks.com/matlabcentral/answers/2753-robot-simulation-of-rrr-robot answer> for a starting point.

約13年 前 | 1

| 採用済み

回答済み
How do I write to move the line in sending serial?
Can you also try to send the carriage return directly: fprintf(serial,'%s\r',...); Also can you check with a serial moni...

約13年 前 | 0

回答済み
Capture file name from uiimport function
Well it stores it internally (its buried in the code). You can check the code by typing edit uiimport. uiimport does not really ...

約13年 前 | 0

回答済み
Getting an error thrown everytime I try to open more than one file in a matrix at a time
This is because when you select multiple files, filename becomes a cell array of file names. The operator == will error on a ce...

約13年 前 | 1

| 採用済み

回答済み
Skipping through text file and extracting data
There is no direct solution for this, but you code it up quite easily: % num is a vector of interested timesteps funct...

約13年 前 | 0

さらに読み込む