Given two arrays a and b how do you implement it to draw a graph with for loop such that the x axis is set of values from a and y axis is the values from b .i.e the graph is the format 'a' vs 'b........​..........​..........​..........​..........​.......'

1 vue (au cours des 30 derniers jours)
for the above pic if B is arbitary (you can put any value) how do you use for loop to generate 2D plot

Réponse acceptée

VBBV
VBBV le 24 Nov 2020
Modifié(e) : VBBV le 25 Nov 2020
clear
t = 0:0.1:10;
for i = 1:length(t)
B(i) = 2*t(i);
end
[x y] = find(B == max(B)) % finds the row and col indices where max value of B occurred
figure(1)
plot(t,B)
axis([0 20 -1 30])
tt = 0:0.2:20;
for i = 1:length(tt)
if tt(i) <= t(y) % use the index in time vector as condition
A(i) = 0;
else
A(i) = 2;
end
end
figure(2)
plot(tt,A)
axis([0 25 0 3])

Plus de réponses (0)

Catégories

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

Community Treasure Hunt

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

Start Hunting!

Translated by