Introduce-X-Function
X-Functions provide a structured programming environment that offers a framework for building Origin tools. Different from the simple GetN box, creating tools by using X-Functions allows the user to focus on the actual data processing code and not have to worry about codes for the user interface.
Most of the dialogs/functions in Origin 8 are X-Functions, and many of them can be run from both menu and command line mode. The flexibility of running X-Functions makes them an attractive approach to customizing Origin
Minimum Origin Version Required: Origin 8.0 SR0
void vcopy(const vector& ix, vector& ox) { if (!ix || !ox) XF_THROW(CER_NO_DATA); ox = ix; }
vcopy col(a) col(b)
vcopy -d