You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given the link file I've created for my particular mesh how would it be possible to index the appropriate rows in the full A matrix returned from the g2a function. I see that the A matrix contains all possible combinations of greens functions for sources and detectors, however I am using a subset of the full combination of sources and detectors. e.g. 128 sources and 128 detectors is 16,384 pairs, but I am only using 1,736 pairs.
The text was updated successfully, but these errors were encountered:
When reducing measurements used in A, the info.pairs table needs to have the same ordering as the measurements in A. The code below reduces A based on source-detector distance.
In general, a list of measurements to keep, e.g., measTRUE, needs combinations of src, det and WL, then make the keep list from matching measurements in info.pairs,
meas=cat(2,info.pairs.Src,info.pairs.Det,info.pairs.WL);
then keep=ismember(meas,measTRUE,'rows');
and continue as below.
Given the link file I've created for my particular mesh how would it be possible to index the appropriate rows in the full A matrix returned from the
g2a
function. I see that the A matrix contains all possible combinations of greens functions for sources and detectors, however I am using a subset of the full combination of sources and detectors. e.g. 128 sources and 128 detectors is 16,384 pairs, but I am only using 1,736 pairs.The text was updated successfully, but these errors were encountered: