comparison of two column vectors
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
sir/madam i have two column vectors, i want to compare element by element and want to know which is large or small.
please help me, how can i write command for it.
0 comentarios
Respuestas (1)
per isakson
el 9 de Abr. de 2022
Editada: per isakson
el 9 de Abr. de 2022
An example
%%
v1 = rand( 6,1 );
v2 = rand( 6,1 );
%%
v1 > v2
This result tells us that the first, fourth, fifth and sixth element of v1 are larger than the corresponding elements of v2
8 comentarios
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!