필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

is there a way of scanning an array to find out what there is in there so i dont reinsert the same variable in there?

조회 수: 2 (최근 30일)
i have an array numbers = [];, i want to create a while loop which inserts numbers into the array. i do not want repeated numbers in the array so if the number already exists i do not want to insert it into the array.
  댓글 수: 2
Stephen23
Stephen23 2015년 3월 13일
Doing this in a loop might not be the best solution. If you gave a little more information then we could recommend alternative ways that might be neater and faster. You could tell us where these numbers are coming from, their dimensions and what code is executed in the loop. Best would be if you actually uploaded your code, then we could read through it and try it out.
ME
ME 2015년 3월 16일
so i have an array pairs with dimenstions 90x2 which appears to be like this 3 7 3 8 3 9 3 10 4 1 4 2 4 3 4 5 and so on I want to create a loop which scans through each row in the array and if the value matches the array pse I will disregard it otherwise insert it into new array called new.

답변 (2개)

Adam
Adam 2015년 3월 13일
find( myArray == newNumber, 1 );
If that returns true the number is already there, if not it isn't.

Adam
Adam 2015년 3월 17일
In response to your latest comment...
C = setdiff(A,B,'rows');
should do what you want, assuming your pse array also has 2 columns and that you wish to remove rows from A (your dimensions array) in which the pair of values matches your pse array.
Is your pse array just 1x2 or does it have multiple pairs?

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by