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........​..........​..........​..........​..........​.......'

3 次查看(过去 30 天)
for the above pic if B is arbitary (you can put any value) how do you use for loop to generate 2D plot

采纳的回答

VBBV
VBBV 2020-11-24
编辑:VBBV 2020-11-25
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])

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by