Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

add white noise to my voise

Status
Not open for further replies.

sara_s

Newbie level 4
Newbie level 4
Joined
Dec 24, 2009
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
Iran
Activity points
1,311
hello
I want to add white noise to my voise ( in matlab)
but I don' know how ?

pls help me
thanks
 

you can use the randn function:

noise=sigma*randn(1,N);
where N is the length of your data.
 

thanks for youre help
but my problem is any thing else !

I have white noise(downloaded from internet)
and I want to add white noise to my voice(that is 2 secend)
these are diffrent in length ,
how can I do this?

thanks indeed
 

let's say that v is voice and n is noise. what you want to do is vn=v+n but length(v) is different from length(n), correct?
let's say that N=min(length(v),length(n)), than you can do vn=v(1:N)+n(1:N).

I hope this help!
 

    sara_s

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top