photo

Carlos Nunez


Active since 2018

Followers: 0   Following: 0

Statistics

MATLAB Answers

8 Questions
0 Answers

RANK
169,704
of 300,584

REPUTATION
0

CONTRIBUTIONS
8 Questions
0 Answers

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
0

RANK
 of 21,030

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 169,723

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


how do i get the last points of every 100 points from a 1000 point graph
x=0:1000 y=sin(x) for N=0:100:length(x) if N>N-50 N end end this is what i have and i kno...

7 years ago | 1 answer | 0

1

answer

Question


how can i gather points of a graph when its running a number of times?
Let say I have an X number of points like 100, so for every 10 points I want the last 5 points so when its 20 I want the last 5 ...

7 years ago | 1 answer | 0

1

answer

Question


How can I get the last numbers of an array from a for loop?
Let's say my for loop is giving me v= [1 2 3 4 5 6 7 8 9 10], rather than taking the whole array I only want it to be coming out...

7 years ago | 1 answer | 0

1

answer

Question


I want to know how can I acquire the last N points of a falling peak after my ECG signal is being produced. Right now I am able to acquire the peaks of the whole system but I only want the last n points
a= arduino('COM3','Uno') x=[]; % We need to establish an initial start t=[];% We need to establish an initial time fv=4% (h...

7 years ago | 0 answers | 0

0

answers

Question


How can I acquire the last number of points in my beats per count. The code right now is able to read the entire history of data points and I only want the last points
clear all; a= arduino('COM3','Uno') x=[]; t=[]; Fv=50; BPM=0; order=8 tic; for k=1:1000 toc; b=readVoltage(...

7 years ago | 0 answers | 0

0

answers

Question


How can i change my x-axis to read real time
clear all; a= arduino('COM3','Uno') x=[]; t=[]; Fv=50; BPM=0; order=8 tic; for k=1:1000 toc; b=readVoltage(...

7 years ago | 1 answer | 0

1

answer

Question


trouble displaying my BPM on the title graph when running the code can someone show me how to do this
clear all a= arduino('COM3','Uno') interv=200; time=1 x=2.0 last=0; upflag=0; while(time<interv) ...

7 years ago | 0 answers | 0

0

answers

Question


How can I display on a figure's title block data as the code is running? I was able to do it for time, but struggling to show BPM
clear all; a= arduino('COM3','Uno'); b=readVoltage(a,'A0'); x=2.4; bc=1; fs=30; beat_count=0; t=[]; t...

7 years ago | 1 answer | 0

1

answer