mean square error expected value
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
how to write this in matlab?
Rz=E[z*z transpose]
and
Rz=E[(z-z bar)(z-z bar)tranpose]
0 comentarios
Respuestas (4)
Mahdiyar
el 6 de Abr. de 2015
Hi nine
If you are looking for Root Mean Square you can simply use command "rms". for more information write the following command in Command windows.
doc rms
Regards.
0 comentarios
Star Strider
el 6 de Abr. de 2015
Use the mean function and the complex-conjugate-transpose operator ('):
Rz = mean(z(:)*z(:)');
and:
Rz = mean((z(:)-zbar)*(z(:)-zbar)');
The subscript colon ‘z(:)’ forces ‘z’ to be a column vector, so you will not get an error if you give it ‘z’ a a row vector.
0 comentarios
ojasvi
el 27 de Mayo de 2015
hi, i have an emg data. first i rectify the signal and then i have to the RMS, how i can i do this. any code for help
0 comentarios
Image Analyst
el 28 de Mayo de 2015
If you have the Image Processing Toolbox, simply use the function immse(). It works for 1-D "images/signals, as well as 2D images.
0 comentarios
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!