Machine Learning onramp section 4.6

조회 수: 10 (최근 30일)
AG
AG 2020년 6월 7일
답변: Asvin Kumar 2020년 6월 10일
Having trouble with the further practice section:
  1. how can i have the for loop iterate through all the variables in the sampleletters.mat file without creating an array of them manually?
  2. can i concatenate these results of the new function 'extract' without first creating a table outside of the for loop?
  3. how do i vertically concatenate outputs of extract? when i use either a semicolon (as shown) or [ ] , i get the error 'all tables being horizontally concatenated must have the same number of rows.'
screenshots of the question and my current work below!

답변 (1개)

Asvin Kumar
Asvin Kumar 2020년 6월 10일
Since the outputs of extract are already tables you can concatenate them without creating an empty table.
For 1, you could approach it in a slightly different manner:
T = whos('-file','sampleletters.mat');
BigTable = extract(T(1).name);
for i = 2:size(T,1)
BigTable = [BigTable ; extract(T(i).name)];
end
BigTable
function feat = extract(var_name)
letter = getfield(load('sampleletters.mat',var_name),var_name);
aratio = range(letter.Y)/range(letter.X);
idxmin = islocalmin(letter.X,"MinProminence",0.1);
numXmin = nnz(idxmin);
idxmax = islocalmax(letter.Y,"MinProminence",0.1);
numYmax = nnz(idxmax);
dT = diff(letter.Time);
dXdT = diff(letter.X)./dT;
dYdT = diff(letter.Y)./dT;
avgdX = mean(dXdT,"omitnan");
avgdY = mean(dYdT,"omitnan");
corrXY = corr(letter.X,letter.Y,"rows","complete");
featurenames = ["AspectRatio","NumMinX","NumMinY","AvgU","AvgV","CorrXY"];
feat = table(aratio,numXmin,numYmax,avgdX,avgdY,corrXY,'VariableNames',featurenames);
end

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by