i have a matlab code for feature extraction, how i apply this code to all my dataset in a file .without applying it one at atime.
조회 수: 4 (최근 30일)
이전 댓글 표시
i have a Matlab code for feature extraction, how i apply this code to all my dataset in a file .without applying it one at a time. i need a code with a function that run through all the dataset at once.
댓글 수: 0
채택된 답변
ANKUR KUMAR
2018년 9월 28일
F=dir('*.nc') % write extension
for i =1:length(F)
% write your commands. call the filename as F(i).name
F(i).name
end
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!