How can i query last column based on another values column

조회 수: 2 (최근 30일)
Mochammad Fariz
Mochammad Fariz 2020년 2월 18일
댓글: KSSV 2020년 2월 18일
i have excel database consisting percentage values from column 1-27..my question is how can i query last column (file path of an image / column 28) based on threshold..for your information my threshold is = 1.6155 from column 1-27
  댓글 수: 2
Bhaskar R
Bhaskar R 2020년 2월 18일
From where you get from the threshold value?
Mochammad Fariz
Mochammad Fariz 2020년 2월 18일
편집: Mochammad Fariz 2020년 2월 18일
i try some images to know threshold how much minimum value percentage of color to display in image..for example the image contains red,yellow,blue,green, and brown ..
red = 14.08888
yellow = 1.5554
blue = 30.8775
green = 0.8755
brown = 0.2377
then in GUI matlab will show " this image contains blue,red "

댓글을 달려면 로그인하십시오.

답변 (1개)

KSSV
KSSV 2020년 2월 18일
You can use inequalitites ==, >, <, >=, <=. Read about them.
Read the excel data into MATLAB using xlsread or readtable.
If A is your column, and val is your value 1.6155.
% get values less then val
idx = A<val ; % this gives logical indices which are less then val
A(A<val) % this gives values which are less then val
  댓글 수: 7
Mochammad Fariz
Mochammad Fariz 2020년 2월 18일
could you give me some codes to query last column (string path name) based on (column 1-27 percentage name)like i describe in my picture database excel above??
KSSV
KSSV 2020년 2월 18일
get the last column by using
iwant = raw(:,end) ;

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by