Changeset 931
- Timestamp:
- Apr 20, 2020 5:26:20 PM (2 years ago)
- Location:
- trunk/User Procedures/Nika
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/User Procedures/Nika/NI1_ConvProc.ipf
r903 r931 3491 3491 //extract the order number and use that to sort out.. 3492 3492 Make/O/N=(numpnts(ListOf2DSampleData)) tempSortWv 3493 tempSortWv = IN2G_FindNum ericalIndexForSorting(ListOf2DSampleData[p])3493 tempSortWv = IN2G_FindNumIndxForSort(ListOf2DSampleData[p]) 3494 3494 //tempSortWv = NI1A_FindeOrderNumber(ListOf2DSampleData[p]) 3495 3495 sort tempSortWv, tempSortWv, ListOf2DSampleData, ListOf2DSampleDataNumbers … … 3500 3500 Make/O/N=(numpnts(ListOf2DSampleData)) tempSortWv 3501 3501 //tempSortWv = NI1A_FindeOrderNumber(ListOf2DSampleData[p]) 3502 tempSortWv = IN2G_FindNum ericalIndexForSorting(ListOf2DSampleData[p])3502 tempSortWv = IN2G_FindNumIndxForSort(ListOf2DSampleData[p]) 3503 3503 sort/R tempSortWv, tempSortWv, ListOf2DSampleData, ListOf2DSampleDataNumbers 3504 3504 KillWaves/Z tempSortWv -
trunk/User Procedures/Nika/NI1_SquareMatrix.ipf
r913 r931 34 34 endif 35 35 if(withTilts) 36 NI1_MakeSqM atrixOfLineoutswtilts(SectorsNumSect,SectorsSectWidth,SectorsGraphStartAngle,SectorsGraphEndAngle)36 NI1_MakeSqMtxOfLinswtilts(SectorsNumSect,SectorsSectWidth,SectorsGraphStartAngle,SectorsGraphEndAngle) 37 37 else 38 38 NI1_MakeSqMatrixOfLineouts(SectorsNumSect,SectorsSectWidth,SectorsGraphStartAngle,SectorsGraphEndAngle) //convert to lineout … … 210 210 211 211 //josh add with tilts 212 Function NI1_MakeSqM atrixOfLineoutswtilts(SectorsNumSect,AngleWidth,SectorsGraphStartAngle,SectorsGraphEndAngle)212 Function NI1_MakeSqMtxOfLinswtilts(SectorsNumSect,AngleWidth,SectorsGraphStartAngle,SectorsGraphEndAngle) 213 213 //strategy: this function will return a squaremap just like the original, but with row points that each correspond to 214 214 //a specific q-bin. To do this, the q2dwave is used (and must have been already created) to make squaremap with q-points.
Note: See TracChangeset
for help on using the changeset viewer.