Estadística
0 Preguntas
11 Respuestas
CLASIFICACIÓN
41.963
of 302.115
REPUTACIÓN
0
CONTRIBUCIONES
0 Preguntas
11 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 21.552
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 179.130
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Gram Schmidt Process Algorithm
%ECE24063 t1 = 0:0.01:1; t2 = 1:0.01:2; t3 = 2:0.01:3; t = [t1,t2,t3]; s1 = ones(1,length(t1)); s2 = ones(1,length(t...
alrededor de 20 horas hace | 0
How do I obtain a "normal" PCM Signal?
x=random('norm',0,1,1,500); figure; stem(x) title("Gaussian signal") xlabel("Number of random variables") ylabel("amplitude...
alrededor de 20 horas hace | 0
how can i quantize the normal distribution using uniform PCM?
fs = 1000; t = 0:1/fs:2; x = sin(2*pi*5*t); subplot(2,1,1) stem(t,x) title("Original signal") title("t") xlabel("x"...
alrededor de 20 horas hace | 0
how can i quantize the normal distribution using uniform PCM?
fs = 1000; t = 0:1/fs:2; x = sin(2*pi*5*t); N = 8; [quant,qlev] = uni(x,N); [quant,code] = uniformpcm1(x,N); P...
alrededor de 20 horas hace | 0
how can i quantize the normal distribution using uniform PCM?
%ECE24063 fs = 1000; t = 0:1/fs:2; x = sin(2*pi*5*t); subplot(2,1,1) plot(t,x) title("sine signal") xlabel("time") y...
alrededor de 20 horas hace | 0
how can i quantize the normal distribution using uniform PCM?
%ECE24063 fs = 1000; t = 0:1/fs:2; x = sin(2*pi*5*t); subplot(2,1,1) plot(t,x) title("sine signal") xlabel("time") y...
alrededor de 20 horas hace | 0
how can i quantize the normal distribution using uniform PCM?
%ECE24063 function [quant,code] = uniformpcm1(x,N) x_max = max(x); x_min = min(x); N = 8; delta = (x_max - x_min)/N...
alrededor de 20 horas hace | 0
how can i quantize the normal distribution using uniform PCM?
%ECE24063 function [quant,qlev] = uni(x,N) x_max = max(x); x_min = min(x); N = 8; delta = (x_max - x_min)/N; R =...
alrededor de 20 horas hace | 0
Colour quantization, uniform quantization
x = random('norm',2,sqrt(5),1,10000); subplot(3,1,1) stem(x) title("Gaussian signal") xlabel("time") ylabel("amplitude") ...
alrededor de 20 horas hace | 0
Colour quantization, uniform quantization
% Uniform Quantization of Piecewise Signal t1 = -1:0.01:0; t2 = 0.01:0.01:1; x1 = t1 + 1; x2 = t2 - 1; t = [t1 t2]; ...
alrededor de 21 horas hace | 0
plot autocorrelation
%ECE24063 clc; clear; close all; % Parameters Am = 5; fm = 2e3; fc = 10 * fm; t = 0:1e-6:2e-3; % Message signal ...
alrededor de 23 horas hace | 0
