Clear Filters
Clear Filters

conversion from double to struct

26 views (last 30 days)
God'sSon
God'sSon on 16 May 2011
hello,
i am trying to import (x) which is an audio signal and then concatenate with some zeros but get the following error message. can anyone please help.
cheers,
x = uiimport('test_signal.mat')
input_signal=x; B = zeros([1,8]); total_input_signal= [B input_signal];
??? Error using ==> horzcat The following error occurred converting from double to struct: Error using ==> struct Conversion to struct from double is not possible.
Error in ==> output at 10 total_input_signal= [B input_signal];

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 16 May 2011
if the mat - file contains one variable
x = uiimport('test_signal.mat');
names =fieldnames(x);
xx = x.(names{:});
total_input_signal = [zeros(1,size(xx,2));xx];

More Answers (1)

Ivan van der Kroon
Ivan van der Kroon on 16 May 2011
if it is a real sound file like
x=load('handel')
x =
y: [73113x1 double]
Fs: 8192
you will have a structure as well. For any set of variables you save and load again, the variables will be behind a structure. To perform array/matrix operations on the sound data in this case, you can think of
total_input_signal=[B ; x.y];
If it is still not clear to you, can you specify what variables youre file test_signal.mat is made up by?

Categories

Find more on Audio I/O and Waveform Generation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!