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
Cris LaPierre 2021년 4월 2일

0 개 추천

Combine the names and value into a table first?
Atbl = table(names,values)
Learn more about accessing data in a table here.

댓글 수: 4

And after that?
Cris LaPierre
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.
ok but how can I simultaneously eliminate the undesired values AND their corresponding names?
Cris LaPierre
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에 대해 자세히 알아보기

태그

질문:

2021년 4월 2일

댓글:

2021년 4월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by