Undefined function 'helperReadSPData' for input arguments of type 'waveletScattering'
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Rimsha Muzaffar
il 13 Lug 2022
Commentato: Rimsha Muzaffar
il 13 Lug 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 Commenti
Risposta accettata
Walter Roberson
il 13 Lug 2022
3 Commenti
Walter Roberson
il 13 Lug 2022
Look at that link, the Appendex section. The second block of code is
function x = helperReadSPData(x)
You can copy that code.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Continuous Wavelet Transforms in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!