photo

Yashwanth


Last seen: Today 2026년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

0 질문
11 답변

순위
41,963
of 302,115

평판
0

참여
0 질문
11 답변

답변 채택
0.00%

획득한 표
0

순위
 of 21,552

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 179,161

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • First Answer

배지 보기

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...

1일 전 | 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...

1일 전 | 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"...

1일 전 | 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...

1일 전 | 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...

1일 전 | 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...

1일 전 | 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...

1일 전 | 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 =...

1일 전 | 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") ...

1일 전 | 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]; ...

1일 전 | 0

답변 있음
plot autocorrelation
%ECE24063 clc; clear; close all; % Parameters Am = 5; fm = 2e3; fc = 10 * fm; t = 0:1e-6:2e-3; % Message signal ...

1일 전 | 0