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