photo

Nick


Last seen: circa un anno fa Attivo dal 2014

Followers: 0   Following: 0

Statistica

MATLAB Answers

0 Domande
15 Risposte

RANK
1.311
of 300.779

REPUTAZIONE
56

CONTRIBUTI
0 Domande
15 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
7

RANK
 of 21.084

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 170.997

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Knowledgeable Level 3
  • Knowledgeable Level 2
  • First Answer

Visualizza badge

Feeds

Visto da

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

oltre 8 anni fa | 0

| accettato

Risposto
Trouble using while loop
You are setting i = 0 and then trying to access tempv[0]. In matlab indexing starts with 1 not 0.

oltre 8 anni fa | 0

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

oltre 8 anni fa | 0

| accettato

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

oltre 8 anni fa | 0

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

oltre 8 anni fa | 1

| accettato

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

oltre 8 anni fa | 0

| accettato

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

oltre 8 anni fa | 1

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

oltre 8 anni fa | 1

| accettato

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

oltre 8 anni fa | 0

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

oltre 8 anni fa | 1

| accettato

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

oltre 8 anni fa | 1

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

oltre 8 anni fa | 0

| accettato

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

oltre 10 anni fa | 1

| accettato

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

circa 11 anni fa | 0

| accettato

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

circa 11 anni fa | 1

| accettato