I want to subset values in a table based on a range of numbers specific to one of my variables.

조회 수: 8 (최근 30일)
I have variable W and variable A. I would like to create separate tables based on a specified range of W. For example, if my first range is 450-400, I would like all of the values of W that fit into this range to make a separate table containing both W and A values.

답변 (1개)

David Hill
David Hill 2022년 8월 15일
W=randi(500,100,1);
A=randi(500,100,1);
M=[W(W>=400&W<+450),A(W>=400&W<+450)]
M = 9×2
400 78 412 177 448 49 423 95 442 115 405 429 428 250 401 492 422 159

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by