Also, is there a way to tell LinProp to ignore correlation between the different data points?
For example, if I have a fictional array of 2,000 scalar independent measurement points. To input this into Matlab would look something like this :
variable = LinProp( measured_values(1:2000) , diag(meas_unc(1:2000)).^2 )
This creates the entire 2000 x 2000 covariance matrix, but I don't care about the covariance (or am assuming independence).
Technically, I could create a for-loop to cycle through the each measurement point + measurement uncertainty combination, but this is extremely slow.
Is there a way to tell LinProp to ignore the correlation between all of the different points? It may not be a best practice to ignore the correlation, but if I just want to perform quick calculations it would be easier (and I'm assuming faster computation time).
Thanks,
Eric