![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/4613496_1522103201617_DEF.jpg)
Nick
Followers: 0 Following: 0
Estadística
0 Preguntas
15 Respuestas
CLASIFICACIÓN
1.278
of 297.016
REPUTACIÓN
56
CONTRIBUCIONES
0 Preguntas
15 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
7
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 157.725
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Blink LEDs using arduino!!
Hi You can use num2str() and change the number during every loop. I tested using Matlab R2016a with this code and LEDs hooked...
casi 8 años hace | 0
| aceptada
Trouble using while loop
You are setting i = 0 and then trying to access tempv[0]. In matlab indexing starts with 1 not 0.
casi 8 años hace | 0
Output variables and text to .txt file
Hi, take a look at this from the file exchange <https://www.mathworks.com/matlabcentral/fileexchange/25387-write-cell-array-t...
casi 8 años hace | 0
| aceptada
How do I format data to send data using udp
Hi try this. This code will send the str that you define to a python client listening on that port when you run the code. The ma...
casi 8 años hace | 0
I want to create a program that will ask the user 3 times for there firstname, lastname and number, and then store all the results within a matrix or array. So far I can only get it for the last result. Thankyou
Someone might have a better or more efficient way of doing this, but I would use a cell array and a for loop and assign it that ...
casi 8 años hace | 1
| aceptada
How can i send my number plate data(e.g. GJ1XX1111) from MATALAB to arduino?
Hi try this Arduino code: #include <String.h> String str; void setup() { Serial.begin(9600); ...
casi 8 años hace | 0
| aceptada
Matlab and Arduino serial data
Hi try adding a pause of a few seconds after you initialize the serial port. When you initialize the serial port on the Arduino,...
casi 8 años hace | 1
Prompt user to load data file
Take a look at <https://www.mathworks.com/help/matlab/ref/uigetfile.html> it might be what you are looking for. You can filter b...
casi 8 años hace | 1
| aceptada
Real time plot for 4 sensor data
Hi I've attached code that I have used in the past to graph values from the Arduino, it should get you started. It should be not...
casi 8 años hace | 0
how to plot the real time data from arduino in matlab.
Hi this is some old code I have that will plot the Arduino's analogread output. It will read continuously until it is stopped. I...
casi 8 años hace | 1
| aceptada
Plotting Data Continuously From Arduino Serial
This is an old code I had before Arduino had a support package so I'm getting data from the Arduino a different way but this wil...
casi 8 años hace | 1
How do I select and/or delete values of a certain index in an array?
This is how you would extract the data to a new array %Generate random numbers for Example OrbSolPwr = randi(10,2880,1);...
casi 8 años hace | 0
| aceptada
how can i write a matlab code to a multple choice question having multiple answers?? say i have to pick out A,B,C,E but excluding D. so far i have this below...
answer = 'n' while(answer ~= 'd') in = input('Get input: ','s'); switch lower(in) case 'a' ...
más de 9 años hace | 1
| aceptada
How can pick a specific values (rows,columns) from a matrix?
if a = rand(10,10) if you want 4 rows and 5 columns you can do a([1:4],[1:5]) and it will give you the first 4 rows and 5 col...
más de 10 años hace | 0
| aceptada
Plotting trajectory in 2D
Inside your function you are calling your function.You are also redefining the parameters you are sending to your function Vo, t...
más de 10 años hace | 1
| aceptada