Home » NXT Downloads


"Unbelievable! DADiSP is the perfect synthesis of Matlab's power and Excel's simplicity!"

- Amro Alawady, Lockheed Martin

DADiSP Downloads for NXT Energy Exploration Technologies

Updated December 16, 2008 - DADiSP 6.0 B19

Commercial Product Downloads

DADiSP/2002
Build 19 StandAlone
MS Windows
9x/2000/NT/XP/Vista
dsp6b19nxt.exe
[6.4 MB]
dsp6b19nxt.exe Download Now!
Getting Started Tutorial PDF File getstart.pdf getstart.pdf [0.3MB] getstart.pdf Download Now!
Function Reference Manual PDF File funcref.pdf funcref.pdf [2.8MB] funcref.pdf Download Now!
Purchasing Information     GoTo


Download Instructions


Password Request


To fully enable your DADiSP, fax or email your password Request Form and you will receive a password. Without a password, you can still run DADiSP in "Browser Mode".

DADiSP 6.0 B19 Features


This release adds the following capabilities to DADiSP 6.0:

NXT Custom Functions


  1. DELSHAPES deletes all shapes in a window.
  2. SAVEMIF saves all shapes in each window to individual MIF files.

New Shape and Text Annotations


  1. Updated "Drawing Toolbar" supports rectangle, ellipse and polygon filled or transparent shape creation.
  2. Full dialog based text, shape and line property editing.
  3. Associate arbitrary text tags with any shape or line.
  4. Reference text, shapes or lines by an object handle. Object handles can get or set object properties using a simple handle.property syntax. For example:


      color = handle.color;         // get object color
      handle.color = lred;          // set color to light red
      handle.text = "Example Text"; // set object text 

  5. Find any object based on property values. For example:


      h = findhandle(W1);

    returns an array of handles to all the text, line or shape objects in W1.


      h = findhandle(W1, "color", lred);

    returns an array of handles to all the text, line or shape objects in W1 with a color of light red.


      h = findhandle(W1, "color", lred, "shape", "ellipse");
      h.fill = lgreen;

    returns an array of handles to all the ellipse objects in W1 with a border color of light red and then sets the interior colors of those objects to light green. Any combination of property values can be specified to locate objects.

    The findtext function searches for text objects only and findshape searches for shapes and lines only.