How to display whos y in GUI edit text or static text ?

3 ビュー (過去 30 日間)
Mohamad
Mohamad 2018 年 5 月 2 日
編集済み: Jan 2018 年 5 月 2 日
file1='speech_demo.wav'
[y,Fs]=audioread(file1);
whos y
How to display whos y in GUI edit text or static text ?
  2 件のコメント
per isakson
per isakson 2018 年 5 月 2 日
Doc says:
S = whos(___)
Mohamad
Mohamad 2018 年 5 月 2 日
編集済み: Jan 2018 年 5 月 2 日
file2='1.wav'
[y2,Fs2]=audioread(file2);
S = whos('file2','1.wav')
Field = fieldnames(S);
Data = struct2cell(S);
CStr = cell(1, numel(Field));
for k = 1:numel(Field)
if ischar(Data{k})
CStr{k} = sprintf('%s: %s', Field{k}, Data{k});
elseif isnumeric(Data{k})
if isempty(Data{k})
CStr{k} = sprintf('%s: []', Field{k});
else
CStr{k} = sprintf('%s: %s', Field{k}, num2str(Data{k}));
end
else % No idea how to display this - adjust this as you like it:
CStr{k} = sprintf('%s: [%s]', Field{k}, class(Data{k}));
end
end
set(handles.edit7, 'String', CStr);
but i get the following warning : Warning: Single line Edit Controls can not have multi-line text

サインインしてコメントする。

採用された回答

Jan
Jan 2018 年 5 月 2 日
編集済み: Jan 2018 年 5 月 2 日
The actual problem is:
set(handles.edit7, 'String', CStr);
but i get the following warning :
Warning: Single line Edit Controls can not have multi-line text
All you have to do is to convert the GUI element from an "single line edit control" to a "multi-line edit control". According to dox uicontrol (link):
To enable multiple lines of text, set Max-Min>1
And as code:
set(handles.edit7, 'Min', 0, 'Max', 2);
Or apply the corresponding changes in GUIDE.
You see how useful it is to post the error or warning message in a question on the forum.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAudio and Video Data についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by