Generating Basic sequences (step, impulse, ramp, exponential) using MATLAB || Part-2 || let's dECodE

Поделиться
HTML-код
  • Опубликовано: 27 окт 2024

Комментарии • 6

  • @weekyeshsg
    @weekyeshsg 2 года назад +1

    yup we got it!

  • @jk_ordeanneil3783
    @jk_ordeanneil3783 3 года назад +1

    Yup I got it thanks

  • @thaddeogarcia4608
    @thaddeogarcia4608 2 года назад

    is there an arrangement in variables in the function? tried to interchange n,x to x,n it does not follow the values when interchanged.

  • @manarh.4833
    @manarh.4833 3 года назад +1

    How can i express x(t) in terms of ramp unit and delta from graph in matlab ...only the final equation??

  • @ismaildz5795
    @ismaildz5795 3 года назад

    How to generate a signal Dirac (t-3) using Zeros function Matlab

    • @ahmedjamil880
      @ahmedjamil880 7 месяцев назад

      % Drawing unit Impulse Function in DTS
      clc;clear;close all
      n=-10:10;
      delta=zeros(size(n));
      a=input('please enter the value of shifting (a) to represent delta(t-a): a= ');
      for i=1:21
      if n(i)== a
      delta(i)=1;
      end
      end
      stem(n,delta,'filled','r','linewidth',2)
      grid
      title('Discrete Time Unit Impulse Function')
      xlabel('time')
      ylabel('Unit Impulse')