EXPERIMENT -6

AIM:-
Program for generation of the exponential signal

TOOLS REQUIRED:-
PC, MATLAB 7.0

PROGRAM:-
n=input('enter lenght of eponential sequence');
t=0:n;
a=input('enter the value of a');
y=exp(a*t);
stem(t,y);
ylabel('amplitude');
xlabel('n');

OBSERVATION:]
Enter length of exponential sequence= 7
Value of a=1




RESULT:-
Exponential signal has been obtained.

PRECAUTION:-
  1. Type the program carefully.
  2. Observe the signal carefully.

More Related Content

DOC
Anil 12
PDF
PF LAB ASSIGNMENT
PDF
Java -lec-5
DOC
Step impulse
PPTX
Java programs
PPSX
CS106 Lab 10 - Functions (passing by value)
PPTX
Pa1 loops
PDF
Arrays c4 c5
Anil 12
PF LAB ASSIGNMENT
Java -lec-5
Step impulse
Java programs
CS106 Lab 10 - Functions (passing by value)
Pa1 loops
Arrays c4 c5

What's hot (10)

PDF
Dsp file
PPSX
CS106 Lab 6 - While and Do..While loop
PPSX
CS106 Lab 7 - For loop
PPS
C programming session 04
PPTX
Infix to postfix conversion
PDF
Write a complete C++ program that does the following: 1. The program will c...
PDF
Code quailty metrics demystified
PPSX
CS106 Lab 4 - If statement
PDF
computer notes - Conversion from infix to postfix
PPTX
TensorFlow Technology
Dsp file
CS106 Lab 6 - While and Do..While loop
CS106 Lab 7 - For loop
C programming session 04
Infix to postfix conversion
Write a complete C++ program that does the following: 1. The program will c...
Code quailty metrics demystified
CS106 Lab 4 - If statement
computer notes - Conversion from infix to postfix
TensorFlow Technology
Ad

Viewers also liked (20)

DOC
Anilkumar1
DOCX
Index1 (2)
DOCX
Data export in matlab alvian zainuddin
PDF
Matlab data import
DOCX
Import/Export data in Matlab
PDF
Basics of Image Processing using MATLAB
PPT
Intro matlab and convolution islam
PPTX
Matlab Importing Data
PDF
MATLAB CODE OF FIR Filter Designing LPF HPF BPF BSF
PPT
Brief Introduction to Matlab
PDF
Image processing
PDF
Matlab workshop
PPTX
IMAGE PROCESSING
PDF
Introduction to simulink (1)
PPTX
Matlab and Image Processing Workshop-SKERG
PPT
Digital image processing using matlab (fundamentals)
PPTX
Image Processing Using MATLAB
PDF
Simulink
PDF
[Steven karris] introduction_to_simulink_with_engi
PPTX
Introduction to Image Processing with MATLAB
Anilkumar1
Index1 (2)
Data export in matlab alvian zainuddin
Matlab data import
Import/Export data in Matlab
Basics of Image Processing using MATLAB
Intro matlab and convolution islam
Matlab Importing Data
MATLAB CODE OF FIR Filter Designing LPF HPF BPF BSF
Brief Introduction to Matlab
Image processing
Matlab workshop
IMAGE PROCESSING
Introduction to simulink (1)
Matlab and Image Processing Workshop-SKERG
Digital image processing using matlab (fundamentals)
Image Processing Using MATLAB
Simulink
[Steven karris] introduction_to_simulink_with_engi
Introduction to Image Processing with MATLAB
Ad

More from Ashok Singh (20)

DOC
ZIP
Matlab
DOCX
Index1
DOCX
RTF
Front page
DOCX
Front page
DOC
Experiment6matlab 1
DOC
DOC
Anil 12
DOC
~$Ep impulse
DOC
DOC
Step impulse
DOC
DOCX
Index1
DOCX
Index1 (2)
DOCX
RTF
Front page
DOCX
Front page
DOC
Experiment6matlab 1
DOC
Experiment6matlab
Matlab
Index1
Front page
Front page
Experiment6matlab 1
Anil 12
~$Ep impulse
Step impulse
Index1
Index1 (2)
Front page
Front page
Experiment6matlab 1
Experiment6matlab

Recently uploaded (20)

PDF
Two-dimensional Klein-Gordon and Sine-Gordon numerical solutions based on dee...
PDF
Taming the Chaos: How to Turn Unstructured Data into Decisions
PDF
sustainability-14-14877-v2.pddhzftheheeeee
PDF
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
PDF
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
PDF
CloudStack 4.21: First Look Webinar slides
PPTX
The various Industrial Revolutions .pptx
PDF
Five Habits of High-Impact Board Members
PPT
Galois Field Theory of Risk: A Perspective, Protocol, and Mathematical Backgr...
PDF
NewMind AI Weekly Chronicles – August ’25 Week III
PDF
A review of recent deep learning applications in wood surface defect identifi...
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PPTX
Chapter 5: Probability Theory and Statistics
PDF
Flame analysis and combustion estimation using large language and vision assi...
PDF
A contest of sentiment analysis: k-nearest neighbor versus neural network
PDF
Hindi spoken digit analysis for native and non-native speakers
PDF
A proposed approach for plagiarism detection in Myanmar Unicode text
PPTX
Modernising the Digital Integration Hub
PDF
STKI Israel Market Study 2025 version august
PPTX
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
Two-dimensional Klein-Gordon and Sine-Gordon numerical solutions based on dee...
Taming the Chaos: How to Turn Unstructured Data into Decisions
sustainability-14-14877-v2.pddhzftheheeeee
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
CloudStack 4.21: First Look Webinar slides
The various Industrial Revolutions .pptx
Five Habits of High-Impact Board Members
Galois Field Theory of Risk: A Perspective, Protocol, and Mathematical Backgr...
NewMind AI Weekly Chronicles – August ’25 Week III
A review of recent deep learning applications in wood surface defect identifi...
Final SEM Unit 1 for mit wpu at pune .pptx
Chapter 5: Probability Theory and Statistics
Flame analysis and combustion estimation using large language and vision assi...
A contest of sentiment analysis: k-nearest neighbor versus neural network
Hindi spoken digit analysis for native and non-native speakers
A proposed approach for plagiarism detection in Myanmar Unicode text
Modernising the Digital Integration Hub
STKI Israel Market Study 2025 version august
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx

Experiment6matlab

  • 1. EXPERIMENT -6 AIM:- Program for generation of the exponential signal TOOLS REQUIRED:- PC, MATLAB 7.0 PROGRAM:- n=input('enter lenght of eponential sequence'); t=0:n; a=input('enter the value of a'); y=exp(a*t); stem(t,y); ylabel('amplitude'); xlabel('n'); OBSERVATION:] Enter length of exponential sequence= 7 Value of a=1 RESULT:- Exponential signal has been obtained. PRECAUTION:- 1. Type the program carefully. 2. Observe the signal carefully.