Aleksandr Diment

Researcher

Audio Research Group
Department of Signal Processing
Tampere University of Technology

Google Scholar profile

MATLAB hints

List names of files with given extension in the directory

files = dir( fullfile(dirname,'*.xyz') );
files = {files.name}';

Source: Amro at stackoverflow.

Add path with subdirectories

addpath(genpath(pathName));

Show current line in debug mode

dbstack()