Azzera filtri
Azzera filtri

How to plot difference of two functions in matlab?

4 visualizzazioni (ultimi 30 giorni)
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]

Risposta accettata

Walter Roberson
Walter Roberson il 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])

Più risposte (0)

Categorie

Scopri di più su Graph and Network Algorithms in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by