Elements in array and matrix

1 view (last 30 days)
Minter
Minter on 4 Apr 2020
Edited: Minter on 5 Apr 2020
how would you detect duplicated user inputs in arrays? and how to use unique?

Answers (2)

KSSV
KSSV on 4 Apr 2020
Read about input and unique.

Image Analyst
Image Analyst on 4 Apr 2020
Hint: call input() or inputdlg() to get the numbers, and unique() inside a while statement to check for validity
while length(numbers) ~= length(unique(numbers)) && sum(numbers > 0) ~= 5

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!