plotting lines from data in a 2D matrix

5 visualizzazioni (ultimi 30 giorni)
Farai Mahachi
Farai Mahachi il 3 Gen 2020
I have a 2D matrix with values as shown in the diagram below. How can I plot two or more lines connecting points of colums with only numbers greater than a threshold?
draw_lines.png
Regards,,,

Risposte (1)

KALYAN ACHARJYA
KALYAN ACHARJYA il 3 Gen 2020
Modificato: KALYAN ACHARJYA il 3 Gen 2020
mat_data=randi(10,[7,6]); % Or any matrix data, any sizes
[r c]=size(mat_data);
iter=1;
plot_data=cell(1,2);
data1=[];
while iter<=2
fprintf('Enter the row Position for %d initial (equal or lesss than %d):',iter,c);
data_value=input('');
data1=mat_data(data_value,1);
for j=2:c
col_data=max(mat_data(data_value-1:data_value+1,j));
data1(j)=col_data;
end
plot_data{iter}=data1;
iter=iter+1;
end
plot(plot_data{1},plot_data{2});

Categorie

Scopri di più su Mathematics 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