A number contain in a series.
I have a series 's'
s=(1:1,2:end)
I find its subsequences like
a=s(1:30)
b=s(30:60)
c=s(60:90)
d=s(90:120)
e=s(120:150)
...
대략 5년 전 | 답변 수: 1 | 0
1
답변
질문
find all subsequence from a series.
I have a series containing 250 points.I need to find all the subsequences of it.Then any subsequence contain point 0.4 then I ne...
대략 5년 전 | 답변 수: 0 | 0
0
답변
질문
Finding all the subsequences
I have a set of numbers.I pollted it.I need to find all the subsequence of it and need to plot
If a=[1,2,3,4,5,6,7,8,9,0.4,0.1,...
대략 5년 전 | 답변 수: 0 | 0
0
답변
질문
finding the extreme points
I have a set a=[0.4,0.3,0.48,0.32,0.12,0.42] .I plotted this plot(a).I need to find all the extreme points (minimum and maximum)...
대략 5년 전 | 답변 수: 0 | 0
0
답변
질문
Extreme points finding from set
d = xlsread('FaceFour_TRAIN.xlsx')
s = d(1:1,2:end);
fa = movstd(s,20,1);
secarray = movstd(fa,20,1) ;
secidx = find(secarr...
대략 5년 전 | 답변 수: 1 | 0
1
답변
답변 있음 plotting graph and mark points
d = xlsread('FaceFour_TRAIN.xlsx')
f=d(d>.04);
plot(d)
I need to mark the f in d and the d I need to represent like a single...
대략 5년 전 | 0
질문
plotting graph and mark points
Hi, I have a set A that contain 200 points and a subset of the set B.I need to graph the A and I need to mark the points in the...
대략 5년 전 | 답변 수: 3 | 0
3
답변
질문
Time reading in matlab
Hi, I have a data set, using matlab I need to read all the data.But the date and time reading is not working.Please help me.
5년 초과 전 | 답변 수: 2 | 0
2
답변
질문
catalog data convert into csv
Hi, I have a dataset in.catalog format. I need to convert it into .csv or .xlsx format for reading it in matlab.Is there is any ...