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

oltre 14 anni fa | 6

| accettato

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 1

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 0

| accettato

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

oltre 14 anni fa | 2

| accettato

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

oltre 14 anni fa | 0

| accettato

Risposto
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

oltre 14 anni fa | 0

Risposto
CPLEX-MATLAB LICENSE
I would suspect that this would depend on the license agreement with CPLEX

oltre 14 anni fa | 0

Risposto
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.*; ...

oltre 14 anni fa | 0

| accettato

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

oltre 14 anni fa | 0

| accettato

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

oltre 14 anni fa | 1

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

oltre 14 anni fa | 1

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

oltre 14 anni fa | 0

| accettato

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

oltre 14 anni fa | 0

| accettato

Risposto
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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 1

Risposto
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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 1

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

oltre 14 anni fa | 2

| accettato

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 0

| accettato

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 1

| accettato

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 0

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

oltre 14 anni fa | 1

| accettato

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

oltre 14 anni fa | 0

Risposto
Running MATLAB Programs on a webpage
There are a couple of MATLAB products that are useful for the same. In addition with the MATLAB Compiler as mentioned above by J...

oltre 14 anni fa | 2

Carica altro