Undefined function 'helperReadSPData' for input arguments of type 'waveletScattering'
2 ビュー (過去 30 日間)
古いコメントを表示
Rimsha Muzaffar
2022 年 7 月 13 日
コメント済み: Rimsha Muzaffar
2022 年 7 月 13 日
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 件のコメント
採用された回答
Walter Roberson
2022 年 7 月 13 日
3 件のコメント
Walter Roberson
2022 年 7 月 13 日
Look at that link, the Appendex section. The second block of code is
function x = helperReadSPData(x)
You can copy that code.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Continuous Wavelet Transforms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!