Filter löschen
Filter löschen

How to plot difference of two functions in matlab?

4 Ansichten (letzte 30 Tage)
Nitigya Joshi
Nitigya Joshi am 25 Apr. 2021
Kommentiert: Nitigya Joshi am 25 Apr. 2021
1. Given u[n] the unit step sequence, using the stem function plot the following :-
• u[n - 3] - u[n - 8]
• u[8 - n] - u[4 - n]
• u[6 - n]

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 25 Apr. 2021
f1 = @(x) sin(3*x)
f1 = function_handle with value:
@(x)sin(3*x)
f2 = @(x) sin(8*x)
f2 = function_handle with value:
@(x)sin(8*x)
f3 = @(x) f1(x) - f2(x)
f3 = function_handle with value:
@(x)f1(x)-f2(x)
fplot(f3, [-10 10])

Weitere Antworten (0)

Kategorien

Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by