How do I plot a column vector like row number # vs row # value
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
say the column vector is
N=round(3+rand(1)*6);
H=round(3+rand(1)*6);
D=zeros(N,1);
D(:,1)=H;
2 comentarios
Image Analyst
el 20 de Ag. de 2015
He most likely used the plot function:
plot(1:length(D), D, 'bd-');
Respuestas (0)
Ver también
Categorías
Más información sobre Annotations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!