6.20.x

LaTeX Pictures IGOR.6.20.x-1.0

in
Downloaded 26 times
Download: LaTeX Pictures.ipf
Size: 26.72 KB
md5_file hash: 1ae622ecfa24d7a0952deb0c9c0d1765
First released: February 8, 2012 - 17:42
Last updated: February 8, 2012 - 17:45

The LaTeX Pictures.ipf procedure file should be moved to Igor's User Procedures folder, and used by placing

#include "LaTeX Pictures"

in your experiment's procedure window.

This adds a "LaTeX Pictures" item to Igor's "Misc" menu.

WPS Data Processing - Size Distribution Fitting (lognormal) IGOR.6.20.x-1.4

in
Downloaded 12 times
Download: WPS Data Handling - Releasepxp.pxp
Size: 3.5 MB
md5_file hash: 3052d3462573df7094a3b7a222c3d399
First released: February 3, 2012 - 00:24
Last updated: February 3, 2012 - 00:24

NA

Sort By Time Of Day

Average rating
(0 votes)

// Sorts input date/time wave by the time of day. NaNs (blanks) go to the end.
// NOTE: This overwrites the input wave.
Function SortByTimeOfDay(w)
	Wave w					// Date/time wave to be sorted
 
	Duplicate/FREE w, timeOfDay
	timeOfDay = mod(w, 24*60*60)		// timeOfDay now contains just time of day
	Sort {timeOfDay,w}, w			// Sort w by timeOfDay, then by date
End

Visualization and Analysis of Broadband Transient Absorption Data IGOR.6.20.x-4.2-6

in
Downloaded 8 times
Download: TADataAnalysis_v4.2.6.zip
Size: 3.44 MB
md5_file hash: 3330e3d49c7b5deb065e17e373c0f92a
First released: January 26, 2012 - 13:56

NEW IN VERSION 4.2.X series:

  • Added fit function options to chirp correction routines.
  • Bug fixes in chirp correction (interpolation) routines (times now derived from red end rather than blue end of data file).
  • Fixed bug in "Load . . " that overwrote some files.
  • Bug fixes in window hook code so that proper time or spectra axis is displayed.
  • Code cleanup and more bug fixes.
  • Began implementing automatic trace coloring for easy differentiation of visible waves.

Centre of mass of an N-D image (1 < N < 3)

Average rating
(0 votes)

Function test()
	make/n=(100,100, 100)/free w
	w = gauss(x, 10, 3, y, 20, 3, z, 30, 3)
	wave temp = com3D(w)
	print temp
End
 
Function/wave com3D(w)
	Wave w
	variable ii, t1, t2, t3
	make/n=(wavedims(w))/free/d COM
	switch(wavedims(w))
		case 1:
			COM[0] = Pla_peakcentroid(w)
			break
		case 2:
			imagetransform sumallrows w
			COM[0] = Pla_peakcentroid(W_sumrows)
			imagetransform sumallcols w
			COM[1] = Pla_peakcentroid(W_sumcols)
			break
		case 3:
			imagetransform sumplanes w
			Wave temp = com3D(M_SumPlanes)
			COM[0] = temp[0]
			COM[1] = temp[1]

Visualization and Analysis of Broadband Transient Absorption Data IGOR.6.20.x-4.2-5

in
Downloaded 3 times
Download: TADataAnalysis_v4.2.5.zip
Size: 3.4 MB
md5_file hash: b3a674ef9162cea47be174d0efb59128
First released: January 20, 2012 - 17:34

NEW IN VERSION 4.2.5:

  • Chirp correction routines.
  • Fixed bug in "Load . . " that overwrote some files.
  • Bug fixes in window hook code so that proper time or spectra axis is displayed.
  • Code cleanup and more bug fixes.

Visualization and Analysis of Broadband Transient Absorption Data IGOR.6.20.x-4.2-4

in
Downloaded 0 times
Download: TADataAnalysis_v4.2.4.zip
Size: 3.4 MB
md5_file hash: 54cbccb012453293fdef3d7fb848dc16
First released: January 20, 2012 - 17:09

NEW IN VERSION 4.2.4:

  • Chirp correction routines.
  • Fixed bug in "Load . . " that overwrote some files.
  • Bug fixes in window hook code so that proper time or spectra axis is displayed.
  • Code cleanup and more bug fixes.

Interpolate a path with equal steps

Average rating
(0 votes)

// Interpolate to create a path with equal spacing between successive points in the XY plane.
// the path described by xwave and ywave as inputs needs to be quite smooth for this to work.
// play with step size (step), number of nodes for interpolation (numNodes) and linear vs. cubic spline 
// interpolation (flagT = 1, 2) to optimise the path output as xout and yout.
// step size must be rather small with respect to spacing of path points in xwave, ywave
 
function StepInterpolate(xwave, ywave, step, flagT, numNodes)
	wave xwave, ywave
	variable step, flagT, numNodes
 

Visualization and Analysis of Broadband Transient Absorption Data IGOR.6.20.x-4.2-3

in
Downloaded 1 time
Download: TADataAnalysis_v4.2.3.zip
Size: 3.4 MB
md5_file hash: 5b81aa674c50d01c8eae1be9c4cfbca9
First released: January 20, 2012 - 12:54

NEW IN VERSION 4.2.3:

  • Chirp correction routines.
  • Chirp correction routines.
  • Bug fixes.
  • Code cleanup and more bug fixes.

Visualization and Analysis of Broadband Transient Absorption Data IGOR.6.20.x-4.2-2

in
Downloaded 0 times
Download: TADataAnalysis_v4.2.2.zip
Size: 3.4 MB
md5_file hash: 9f08a65f83666247f02eb7d2d6a63be7
First released: January 20, 2012 - 08:21

NEW IN VERSION 4.2.2:

  • Chirp correction routines.
  • Chirp correction routines.
  • Bug fixes.
Syndicate content

Back to top