I have produced a crop map, and I need to calculate a number of biophysical variables using specific equations for specific crop class . I did it before using Matlab.
Just open Band math and type the equation for example in case f NDVI:
(b2-b1)/(b2+b1)
Once you wrote this equation, in the next stage you have to choose 'b1' and 'b2' accordingly, which in this case are NIR and IR bands. The rest is straight forward.
Be careful about your data type, if your images are integer(e.g. uint16), you then need to make a small change to the equation by adding float(b1)-float(b2) to avoid getting zero/one results.