Sort Function Help and Selecting Highest Values
显示 更早的评论
Hello, I am trying to create a MatLab function that takes in two inputs, x and y, and outputs select. select should be the same size as x. The elements of select should be the same as the corresponding element x if that element is one of the y largest values in x and 0 otherwise.
I know I am supposed to be using the Sort function to help pick the highest values, but I'm pretty unsure how to make this function.
Thank you for any help you can give.
回答(1 个)
Walter Roberson
2011-9-23
xsorted = sort(x(:));
y_largest_x = xsorted(end-y+1:end);
(Yes, that was deliberately written a bit clumsy.)
12 个评论
Kyle
2011-9-23
Kyle
2011-9-23
Walter Roberson
2011-9-23
hint: ismember
Kyle
2011-9-23
Walter Roberson
2011-9-23
You have determined the n highest values. Now, how are you going to test each value in x to determine whether it is one of those high values?
Kyle
2011-9-23
Walter Roberson
2011-9-23
So... read the documentation on the function named "ismember"
Kyle
2011-9-23
Walter Roberson
2011-9-23
Consider:
if ismember(SOMETHING(5),y_largest_x)
select(5) = x(5);
end
Now figure out what SOMETHING should be.
Kyle
2011-9-23
Walter Roberson
2011-9-23
No.
It is difficult to give any more hints without giving the key answer away, which would ruin the purpose of the assignment.
The entire assignment can be completed with two statements plus the function header. Ah yes... I just remembered the hack that would allow it to be written as a single statement plus the function header.
Daniel Shub
2011-9-25
This sounds like another challenge to see how few characters are needed ...
类别
在 帮助中心 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!