MATLAB and Acquisition DevicesData acquisition devices have the potential to be directly controlled by code on your computer, code other than the software that one installs on your device. If one had the required interface drivers, one could use MATLAB to directly control a particular data acquisition device. These techniques are possible for both the Analog Discovery and myDAQ devices. With the right drivers, a range of programming languages can achieve these results. Over the last 10 years, MATLAB has developed a data aquisition toolbox for interfacing in such cases. For the GT site licence, this toolbox should be included; in general, MATLAB does not mind selling yet another toolbox. There are other driver code approaches to interface to MATLAB, although they take alot more work. As one who has written a few drivers in the past, I can state it takes work, although it can be worth it. The concepts are primarily focused for the MyDAQ device as it seems to be the device that most requires these concepts. The concepts should be extendable to other devices (e.g. Analog Discovery) Some have mentioned that the MyDAQ element only seems to work with the Data Acquisition Toolbox for Windows based machines. Link for MATLAB DAQ aquisition documentation from MATLAB. The following material started from contributed material by Nickolas Lee (Fall 2020) as a way to use the myDAQ directly with MATLAB and be controlled by MATLAB. Having the data taken by MATLAB allows for your plots rather easy (plots are required to be a MATLAB format; Excel type plots are not accepted). Install the Data Acquisition Toolbox. Applications installed include
For example for the voltage divide experiment, one could place the ai0+ and - around the second resistor. One can easily measure voltages up to 5 volts. The Matlab code used is below. Analog Input Recorder was used to record the results. The first function will send 0 - 5 volts over 10 seconds.
d = daq("ni"); One can use both outputs and run them simultaneously. saveas(stackedplot(data), "name.png") saves the graph.
d = daq("ni"); In response, we had some additional useful comments from Xinpei Ni on using he myDQA directly with MATLAB. The following material started from that material: To read the data from MyDAQ to our computer, the following code collects and saves the data in MATLAB's timetable format.
d = daq("ni"); The data records the voltages to out with respect to time, not input voltage. You have the input voltage with time (input). In response after lab, we had some additional useful comments from Christopher Saetia. The following material started from that material: When running the code above to control the myDAQ, one might get the error: "Unrecognized function or variable 'daq'." Here is a workaround:
d = daq.createSession("ni");
After running these lines of code (takes about 5-10 seconds),
the collected data for Vout and the supplied voltages will appear
in the workspace pane under the matrices ans and output respectively.
You might get this warning:
The error of daq function not being recognized: likely because not running the most up to date 2020 version of Matlab (the code is very recent MATLAB additions). To collect meaningful data, use the myDAQ ports ai0+ and ai0- to measure the voltage across the resistor, and ao0 and AGND (on the ao side) to provide the voltage to the power rails.
|