answersLogoWhite

0


Best Answer

no way... use awgn function in matlab

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you implement awgn in MATLAB without using awgn function?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you modulate in matlab without using matlab tools?

You would have to write your own code for a modulation (Matlab has a convolution function not in the tools), otherwise you can use its built in function in the signal processing toolbox.


How do you sinx without using mathh or built in sin function Any Algorithm to implement sin function?

You can compute sin(x) manually/numerically using Taylor's Series.


How do you convert sequence of images to video in matlab?

You can do this by selecting the sequence of images you want to animate and then using the Matlab's function called "im2frame". This will result in a video.


Can you implement the same using c?

Some function are not using in c


How do you plot frequency spectrum using fft function in MATLAB?

To plot the frequency spectrum using the fft function in MATLAB, first compute the one-dimensional discrete Fourier transform using fft, provide the data series as an input. Then use the abs() function to get the magnitude spectrum, and plot the result using the plot() function, with the frequency domain on the x-axis and the magnitude spectrum on the y-axis.


How do you make graph from an equation in Matlab?

Initially, the equation can be directly realized using Matlab source code. Then various inputs can be applied to it. These values can easily be plotted on a graph using plot or stem command in Matlab.


How do you define power function without using operator?

using pow() function.. ..


How to do a password using vhdl?

A VHDL program can be written to provide a password in the following ways.Using FPGA:Your program can be dumped into a FPGA. This works as per the program written. As the code is burned into it, the user can not see the code. Now, within your program you can have a conditional statement which serves as your password. For example,if (c=ramarav) then...................................................................Using CPLD:It also works in the similar manner.Using a GUI:We can implement a graphical user interface, but the easier way is to take the help of MATLAB tool. We can implement our VHDL code in MATLAB tool and it serves the purpose.


How do you call matlab from java?

You can MATLAB from Java by using the matlabcontrol library available at link1. A walkthrough to get you started can be found at link2


Convolution in matlab using for loop?

There are a lot of convolution functions in matlab, mostly in the signal processing toolbox, so it depends on what you want to do. Matlab has extensive help files available online.


How do you determine determinant of matrix using matlab?

d = det(x);


Can you implement merge sort without using recursion?

Sure, recursion can always be substituted with using a stack.