| Jobs | Links |
|---|---|
| Megha
Engineering & Infrastructures Ltd. We are Looking For Graduate Engineering Trainee(GET), for Uttar Pradesh. Location: All Over Uttar Pradesh. Qualification: B.Tech(Civil/Mech) , Pass out Year: 2021/2022/2023 Only Interested Candidates can Send their Resume to the below email id : psreelakshmi@meghaeng.com |
psreelakshmi@meghaeng.com |
| Graduate Trainee
|
https://www.linkedin.com/jobs/view/3895372440 |
| 3 | 3 |
| 4 | 4 |
| 6 | 6 |
MATLAB Code clc; clear; close all ; %% Step 1: Define Parameters M = 8; % Number of array sensors d = 0.5; % Sensor spacing (lambda/2) K = 2; % Number of signals N = 200; % Number of snapshots theta = [-20 30]; % True signal angles (degrees) SNR = 10; % Signal-to-noise ratio (dB) fprintf( 'Step 1: Parameters Initialized\n' ); %% Step 2: Generate Signal Sources t = 1:N; s1 = exp(1j*2*pi*0.05*t); s2 = exp(1j*2*pi*0.1*t); S = [s1; s2]; figure; plot(real(S(1,:))) title( 'Signal 1 (Real Part)' ) xlabel( 'Samples' ) ylabel( 'Amplitude' ) figure; plot(real(S(2,:))) title( 'Signal 2 (Real Part)' ) xlabel( 'Samples' ) ylabel( 'Amplitude' ) fprintf( 'Step 2: Source Signals Generated\n' ); %% Step 3: Construct Steering Matrix A = zeros(M,K); for k = 1:K A(:,k) = exp(-1j*2*pi*d*(0:M-1)'*sin(theta(k)*pi/180)); end fprintf( 'Step 3: Steering Matr...