Undefined function 'helperReadSPData' for input arguments of type 'waveletScattering'
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Rimsha Muzaffar
am 13 Jul. 2022
Kommentiert: Rimsha Muzaffar
am 13 Jul. 2022
Xtrain = [];
scatds_Train = transform(adsTrain,@(x)helperReadSPData(x));
while hasdata(scatds_Train)
smat = read(scatds_Train);
Xtrain = cat(2,Xtrain,smat);
end
Error in spokenwavelet>@(x)helperReadSPData(x) (line 33)
scatds_Train = transform(adsTrain,@(x)helperReadSPData(x));
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 13 Jul. 2022
3 Kommentare
Walter Roberson
am 13 Jul. 2022
Look at that link, the Appendex section. The second block of code is
function x = helperReadSPData(x)
You can copy that code.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Continuous Wavelet Transforms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!