finding the value of a corresponding column in matrix

3 views (last 30 days)
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

Accepted Answer

Matt J
Matt J on 12 Mar 2024
Edited: Matt J on 12 Mar 2024
models = A(A(:,1)==40,2)

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!