Get started using the MATLAB instrument drivers

Post your MATLAB discussions here
Post Reply
Martyn
Site Admin
Site Admin
Posts: 4483
Joined: Fri Jun 10, 2011 8:15 am
Location: St. Neots

Get started using the MATLAB instrument drivers

Post by Martyn »

This video shows how to get started using the MATLAB instrument drivers that we provide through our Software Development Kit (SDK)

Martyn
Technical Support Manager

Hitesh

Re: Get started using the MATLAB instrument drivers

Post by Hitesh »

For Users having downloaded and installed the Pico SDK for Microsoft Windows platforms, the respective PSXXXXConfig.m files can be updated to add the location of the driver files to the MATLAB path instead of having to copy them into the relevant directory:

32-bit MATLAB on 64-bit Windows operating systems:

Code: Select all

addpath('C:\Program Files (x86)\Pico Technology\SDK\lib\');
otherwise:

Code: Select all

addpath('C:\Program Files\Pico Technology\SDK\lib\');
Note: For 64-bit versions of MATLAB, the 'thunk' dlls located in the win64 folder of the Instrument Driver package installed by the SDK will be required. The MATLAB files are installed to the directory specified for the examples during install and to the relevant Program Files directory.

Post Reply