Page 1 of 1

[Help] Create Logical Expression(Math) Band

Posted: Mon Nov 13, 2017 8:58 pm America/New_York
by phamicha
Hi all,
I have a problem related to Create Logical Expression(Math) Band.
I was used formulation TSS = 1.7532*E^(204.26*Rrs_660) by Create Logical Expression(Math) Band function. The result show only unique value equal 2.
Please help me to explain what is wrong and tell me how to fix this problem?
The below images show my problem, and I am using GOCI data.
Thank you.


[Help] Create Logical Expression(Math) Band

Posted: Wed Nov 15, 2017 12:09 pm America/New_York
by OB SeaDAS - knowles
The bandMath expression  TSS = 1.7532*E^(204.26*Rrs_660)  is not doing what you think it is suppose to do.  You are confusing the caret operator "^", which is actually doing a bitwise exclusive-OR on two integers, with the a formatting style of writing "^" to represent the power notation.

To formulate your expression, use either:
TSS = 1.7532*exp(204.26*Rrs_660)
or
TSS = 1.7532*pow(E,(204.26*Rrs_660))

Danny

[Help] Create Logical Expression(Math) Band

Posted: Wed Nov 15, 2017 8:38 pm America/New_York
by phamicha
Thank you very much for your help.