How to fix subplot instant of tiledlayout.i'm using 2018 version MATLAB
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Deepu S S
am 4 Okt. 2021
Kommentiert: Deepu S S
am 8 Okt. 2021
first of all i'm using 2018 version of MATLAB. when i excute below program an unexpected error occuring...........please help me to fix this
guidata(hObject, handles);
disp('Entered');
guidata(hObject, handles);
folder_name = uigetdir('','Select src data Directory');
if isequal(folder_name,0)
disp('Directory Selected');
else
% set(handles.EEGFilename,'string','Wait Loading File.......');
disp(['You have selected ', fullfile(folder_name)]);
disp('CHD Audio file processing wait')
handles.srcFolder= fullfile(folder_name);
% set(handles.edDirName,'string',handles.srcFolder);
end
guidata(hObject, handles);
% Specify the folder where the files live.
k='';
myFolder = 'F:\audio';
folder ='F:\';
% AudioArray{k} = audioread(fullfile(folder));
% maxaudio(k) = max(AudioArray{k});
% myFolder = 'F:\audio';
% Check to make sure that folder actually exists. Warn user if it doesn't.
if ~isfolder(myFolder)
errorMessage = sprintf('Error: The following folder does not exist:\n%s\nPlease specify a new folder.', myFolder);
uiwait(warndlg(errorMessage));
myFolder = uigetdir(); % Ask for a new one.
if myFolder == 0
% User clicked Cancel
return;
end
end
% Get a list of all files in the folder with the desired file name pattern.
filePattern = fullfile(myFolder, '**/*.wav'); % Change to whatever pattern you need.
theFiles = dir(filePattern);
for k = 1 : length(theFiles)
baseFileName = theFiles(k).name;
fullFileName = fullfile(theFiles(k).folder, baseFileName);
fprintf(1, 'Now reading %s\n', fullFileName);
% Now do whatever you want with this file name,
% such as reading it in as an image array with imread()
AudioArray = audioread(fullFileName);
[y,fs] = audioread(fullFileName);
subplot = 'theFiles';
tiledlayout('flow')
for k = 1 : length(theFiles)
baseFileName = theFiles(k).name;
fullFileName = fullfile(theFiles(k).folder, baseFileName);
% read the file with audioread
[y,fs]=audioread(fullFileName);
% this defines a time variable for your x axis:
t = linspace(0, height(y)/fs, height(y));
% this adds another tile (axes) to your layout
nexttile
% plot it
plot(t,y)
% label it
xlabel('Time (s)')
ylabel('Amplitude')
set(gcf,'MenuBar','none')
end
ERROR
undefined function or variable 'tiledlayout'.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 4 Okt. 2021
tiledlayout was introduced in R2019b. To fix use subplot() like Walter showed you. Also, have your inner loop be over k2 instead of k.
0 Kommentare
Weitere Antworten (1)
Walter Roberson
am 4 Okt. 2021
guidata(hObject, handles);
disp('Entered');
guidata(hObject, handles);
folder_name = uigetdir('','Select src data Directory');
if isequal(folder_name,0)
disp('Directory Selected');
else
% set(handles.EEGFilename,'string','Wait Loading File.......');
disp(['You have selected ', fullfile(folder_name)]);
disp('CHD Audio file processing wait')
handles.srcFolder= fullfile(folder_name);
% set(handles.edDirName,'string',handles.srcFolder);
end
guidata(hObject, handles);
% Specify the folder where the files live.
k='';
myFolder = 'F:\audio';
folder ='F:\';
% AudioArray{k} = audioread(fullfile(folder));
% maxaudio(k) = max(AudioArray{k});
% myFolder = 'F:\audio';
% Check to make sure that folder actually exists. Warn user if it doesn't.
if ~isfolder(myFolder)
errorMessage = sprintf('Error: The following folder does not exist:\n%s\nPlease specify a new folder.', myFolder);
uiwait(warndlg(errorMessage));
myFolder = uigetdir(); % Ask for a new one.
if myFolder == 0
% User clicked Cancel
return;
end
end
% Get a list of all files in the folder with the desired file name pattern.
filePattern = fullfile(myFolder, '**/*.wav'); % Change to whatever pattern you need.
theFiles = dir(filePattern);
numfiles = length(theFiles);
for k = 1 : numfiles
baseFileName = theFiles(k).name;
fullFileName = fullfile(theFiles(k).folder, baseFileName);
fprintf(1, 'Now reading %s\n', fullFileName);
% Now do whatever you want with this file name,
% such as reading it in as an image array with imread()
AudioArray = audioread(fullFileName);
[y,fs] = audioread(fullFileName);
k_copy = k;
for k = 1 : numfiles
baseFileName = theFiles(k).name;
fullFileName = fullfile(theFiles(k).folder, baseFileName);
% read the file with audioread
[y,fs]=audioread(fullFileName);
% this defines a time variable for your x axis:
t = linspace(0, height(y)/fs, height(y));
subplot(numfiles, numfiles, (k_copy - 1)*numfiles + k);
% plot it
plot(t,y)
% label it
xlabel('Time (s)')
ylabel('Amplitude')
set(gcf,'MenuBar','none')
end
end
8 Kommentare
Image Analyst
am 7 Okt. 2021
They should all go in the same window. If you want them all in the same axes in the same window, just don't use subplot().
Here is my File Exchange for plotting all audio waveforms in a single window:
Siehe auch
Kategorien
Mehr zu Annotations 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!