function [Rsquare,SSR,SST,SSE] = calcRsquare( response, predicted )
DESCRIPTION
calculates Rsquare value
inputs:
response -> as observed in the data
predicted -> as predicted with some fit of a model
returns Rsquare, SSR (sum of squares of the regression) and SST (total sum
of squares)
urut/jan05