finding the value of a corresponding column in matrix

3 visualizaciones (últimos 30 días)
yas bat
yas bat el 12 de Mzo. de 2024
Comentada: yas bat el 12 de Mzo. de 2024
hello, i have matrix A which consists of two columns. one is the size of the shoe and the second is the model.
how can i find the models that are in a specific size? for example, if the shoe size is 40, i need the models that are in that size.
function A=MatModel()
size1=randi([35,47],25,1);
model=randi([6,13],25,1);
A=[size1,model];
end
function modelvec=ShModel(A,x)
A=MatModel()
size1=MatModel;
x=input('what is your shoe size: ');
for i=1:25
c=find(A==x);
end
size1(size1=c)
end

Respuesta aceptada

Matt J
Matt J el 12 de Mzo. de 2024
Editada: Matt J el 12 de Mzo. de 2024
models = A(A(:,1)==40,2)

Más respuestas (0)

Categorías

Más información sobre Math Operations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by