photo

Nick


Last seen: 11개월 전 2014년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

0 질문
15 답변

순위
1,307
of 300,369

평판
56

참여
0 질문
15 답변

답변 채택
0.00%

획득한 표
7

순위
 of 20,936

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,436

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 3
  • Knowledgeable Level 2
  • First Answer

배지 보기

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

8년 초과 전 | 0

| 수락됨

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

8년 초과 전 | 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...

8년 초과 전 | 0

| 수락됨

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

8년 초과 전 | 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 ...

8년 초과 전 | 1

| 수락됨

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

8년 초과 전 | 0

| 수락됨

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

8년 초과 전 | 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...

8년 초과 전 | 1

| 수락됨

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

8년 초과 전 | 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...

8년 초과 전 | 1

| 수락됨

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

8년 초과 전 | 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);...

8년 초과 전 | 0

| 수락됨

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

10년 초과 전 | 1

| 수락됨

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

대략 11년 전 | 0

| 수락됨

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

대략 11년 전 | 1

| 수락됨