Fix slownessToSOS bug.

This commit is contained in:
sunwen
2023-06-07 16:21:36 +08:00
parent 6f4a28f0a2
commit e19740288c

View File

@@ -80,7 +80,7 @@ namespace Recon {
Matrix slownessToSOS(Aurora::Matrix & aVF1, double aSOS_IN_WATER)
{
return 1 / ((aVF1 + 1) / aSOS_IN_WATER);
return 1 / (aVF1 + 1 / aSOS_IN_WATER);
}
DiscretizePositionValues discretizePositions(Aurora::Matrix &aVSenderCoordList, Aurora::Matrix &aVReceiverCoordList, double aNumPixelXY)