Effacer les filtres
Effacer les filtres

How do ones and zeroes work in plotting a graph?

14 vues (au cours des 30 derniers jours)
RandomChikiBum
RandomChikiBum le 25 Déc 2021
Commenté : RandomChikiBum le 25 Déc 2021
clc;
close all;
clear all;
t=-2:1:2;
y=[zeros(1,2),ones(1,1),zeros(1,2)]
y = 1×5
0 0 1 0 0
stem(t,y);
This code is to plot an impulse graph, I don't understand how "zeroes", "ones" work here , I know they are used to create a matrix with all elements as zeroes and ones respectively.
thanks!

Réponse acceptée

Walter Roberson
Walter Roberson le 25 Déc 2021
y=[zeros(1,2),ones(1,1),zeros(1,2)]
y = 1×5
0 0 1 0 0
is just a way of writing
y = [[0, 0], [1], [0, 0]]
y = 1×5
0 0 1 0 0
which then becomes
y = [0, 0, 1, 0, 0]
y = 1×5
0 0 1 0 0
so it is just saying "two zeros, one one, two zeros".
Another way of writing would have been
t=-2:1:2;
y = zeros(size(t));
y(t == 0) = 1;
stem(t, y)

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by