Assigning names to values of an array
이전 댓글 표시
Hello, so I have the following problem. I have 2 arrays, a 1x395 containing names and a 1x395 containing values corresponding to said names. What I want to achieve is assign each name to its corresponding value, sigma-clip the values and then return the names of the values that survived the sigma-clip. I know how to sigma-clip the values, but how do I assign the name of the values to the values themselves? Thanks in advance
답변 (1개)
Cris LaPierre
2021년 4월 2일
Combine the names and value into a table first?
Atbl = table(names,values)
댓글 수: 4
Lysandros Bafaloukos
2021년 4월 5일
Cris LaPierre
2021년 4월 5일
Perform your sigma clipping on the values, but remove the row of the table. What remains is the surviving values, and their corresponding names.
Lysandros Bafaloukos
2021년 4월 5일
Cris LaPierre
2021년 4월 5일
What have you tried? It's much easier to help if you share your code and data.
카테고리
도움말 센터 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!