Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by ayina

  1. A

    simulink user defined function implementation

    can some1 guide me how to use matlab function block model in simulink i defined the function and it works good if i use it in m.file but showing error for simulink. m not been able to debug error i tried to follow Google but no success.
  2. A

    Scrambler - simulating a modem in Matlab

    Re: Scrambler function out=scrambler(x) N=length(x); %Scrambler initialization section if x(1:2)==[0 0], y(1:15)=[1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]; end; if x(1:2)==[0 1], y(1:15)=[0 1 1 1 0 0 0 0 1 1 1 1 1 1 1]; end; if x(1:2)==[1 0], y(1:15)=[0 1 1 1 1 1 1 1 0 0 0 0 0 0 0]; end...
  3. A

    to find eigen value crieteria for parron frobinious theory

    thanks bur what is r here. i thought its dominant eigen value of matrix (i mentioned as 'int') . but if that is rue then there is no solution for which this (r<1) is satisfied. that is basic problem. if i dont found that then proceeding that paper wouldn't an easy task. while thanks\ this...
  4. A

    to find eigen value crieteria for parron frobinious theory

    i m solving resource allocation problem for d2d communication (wireless problem) in which after solving the whole framework i got matrix A and B . where for matlab simulation purpose P is initialized basically it is power optimization problem. here is paper i m tring to reproduce its results...
  5. A

    to find eigen value crieteria for parron frobinious theory

    hi what is significance of eigen value criteria af some arbitrary matrix. i m using this in expession P=inv(I-A)*B. where A is 4x4...
  6. A

    femtocell in d2d communication

    what is significance of femtocell, how it is used in d2d, how it miittigate interferce effect ? waiting for reply
  7. A

    question about lms function in matlab?

    then use functional block lms filter search matlab help
  8. A

    question about lms function in matlab?

    u can write a function yourself. follow this %%adsp question simulaation clear all close all d=[1 -1 1 -1]'; noise=[-.1 0.1 0.2 0.1]'; h=2; m=2; w=[0 0]'; mu=0.339; u=h.*d+noise; for n=1:4, if n==1, u_use=[0 u(n)]'; elseif n==5, u_use=[u(n-1) 0]'; else u_use=[u(n-1)...
  9. A

    Multiple Frequencies

    very simple and crude method is the frequency counting. in genral devices doesnot distinguish b/w frequency they are programmed acordingly
  10. A

    matlab code digital communication

    this is $ qam modulation and bit error rate curve it will help u]you.%% 4QAM using correlation metric clc close all clear all N =10^ 5; % number of bits or symbols Eb_N0_dB =-20:-5; % multiple Eb/N0 values snr=Eb_N0_dB; %% signals and their apriori defined for QAM s2=1+j; s0=-1+j; s1=-1-j...
  11. A

    single or multitone cancellor

    i wrote the code for this but it is for known frequency interference cancellation. %% step 1 proj adsp clear; clc close all; N=2000; Fs=1000; Length=Fs*10; f_signal=20/Fs; x=sin(2*pi*20/Fs*(1:N)); %plot (x) f1=50;%freq of noise signal in Hz i=1:length(x); Noise_signal = sin(2*pi*f1*i/Fs); %...
  12. A

    single or multitone cancellor

    i am doing work on a project in which undesired frequencies are added as noise in base band communication signal. now i want to cancel that frequency effect by estimating its amplitude ,phase and frequency. there are two approaches in my mind 1) notch filter (but it is not so reasonable atleast...
  13. A

    single or multi tone cancellor

    i am doing work on a project in which undesired frequencies are added as noise in base band communication signal. now i want to cancel that frequency effect by estimating its amplitude ,phase and frequency. there are two approaches in my mind 1) notch filter (but it is not so reasonable...
  14. A

    How to design the matlab code for LMS adaptive equilization

    Re: Noise Cancellation using Normalized LMS and Leaky LMS in MATLAB for Speech enhanc LMS method to findfilter coefficients of order 2. here is code plot is showing opposite result because of some mistake which i couldn't found so it is diverging instead of convergence.here is code...
  15. A

    Noise Cancellation using Normalized LMS and Leaky LMS in MATLAB for Speech enhancemen

    LMS method to findfilter coefficients of order 2. here is code plot is showing opposite result because of some mistake which i couldn't found so it is diverging instead of convergence.here is code M=2; %tap weighth length a(1:M)=[1 2.0260]% 2.1480 -1.1590]...

Part and Inventory Search

Back
Top