hi.... i need to upload a speech singal into a images through the frequency of the speech signal.....how can do it

1 次查看(过去 30 天)
clc;
clear all;
close all;
I=imread('crazy.jpg');
figure,imshow(I),title('original image');
[x y z]=size(I);
load handel.mat
filename = 'handel.wav';
Y1 = y; Fs1 = Fs;
audiowrite(filename,y,Fs);
clear y Fs
% Read the data back into MATLAB using audioread.
[y,Fs] = audioread('handel.wav');
% Play the audio.
sound(y,Fs);
% signal spectrum of the audio signal
[x Fs]=audioread('handel.wav');
x=x(:,1);
N=length(x);
t=(0:N-1)/Fs;
figure(1);
plot(t,x,'r');
xlim([ 0 max(t)])
ylim([-1.1*max(abs(x)) 1.1*max(abs(x))])
grid on
set(gca,'Fontname','Times new roman','Fontsize',14)
xlabel('time,s')
ylabel('amplitude')
title(' the amplitude signal with the dimension')
figure(2)
spectrogram(x,1024, 3/4*1024 , [],Fs,'yaxis');
box on
set(gca,'Fontname','Times new roman','Fontsize',14)
ylabel('Frequency,Hz')
xlabel('Time,s')
title('the frequency value of the spech signal')
h=colorbar
set(h,'fontname','times new roman','Fontsize',14);
ylabel=('Magnitude,db')
  2 个评论
Rik
Rik 2017-11-7
Have a read here and here. It will greatly improve your chances of getting an answer.
Your code is not readable and I can't find what your actual question is. Please edit your question.

请先登录,再进行评论。

回答(1 个)

pooja chandrabose
Hi I need the help I want to know how to make cellular automata under Moore model in 124 rule ...Kindly help me....

类别

Help CenterFile Exchange 中查找有关 Audio Processing Algorithm Design 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by