Step, Impulse, & Ramp Functions [MATLAB]

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall with Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/13

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No study sessions yet.

14 Terms

1
New cards

Step Function

A signal that switches from zero to one at a specific time.

2
New cards

u = [zeroes(1, N), ones(1, N)]

Discrete-Time Unit Step (MATLAB)

3
New cards

Discrete-Time Impulse

A signal that is zero everywhere except at one time index.

4
New cards

delta = [zeroes(1, N), 1, zeroes(1, N)]

Discrete-Time Unit Impulse (MATLAB)

5
New cards

Ramp Signal

A signal that increases linearly with time.

6
New cards

ramp = 0:1:N

Ramp Signal (MATLAB)

7
New cards

Rectangular Pulse

A finite-duration signal formed by subtracting two step functions.

8
New cards

M-File

A file containing MATLAB commands saved for reuse.

9
New cards

Script File

An M-file that runs commands sequentially without input/output arguments.

10
New cards

Function File

An M-file that accepts inputs and returns outputs.

11
New cards

Function Definition

The first line of a function M-file defining its name and arguments.

12
New cards

size Function

Returns the dimensions of a matrix or vector.

13
New cards

find Function

Returns indices of elements that satisfy a logical condition.

14
New cards

User-Defined Rectangular Pulse Function

A custom MATLAB function that generates a rectangular pulse using logical conditions.