Effacer les filtres
Effacer les filtres

How to convert a legacy based interface code to a session based interface?

6 vues (au cours des 30 derniers jours)
function sm() object=daq.createSession('ni'); spec=addDigitalChannel(object,'Dev1','Port1/Line0:3','OutputOnly'); putvalue(spec,0); pattern=[5 6 10 9]; for i=1:25 putvalue(spec,pattern(1)); pause(0.3); putvalue(spec,pattern(2)); pause(0.3); putvalue(spec,pattern(3)); pause(0.3); putvalue(spec,pattern(4)); pause(0.3); end; putvalue(spec,0);
This is a code to run a stepper motor using MATLAB 2013. I need a MATLAB 2015 code for the same.

Réponse acceptée

Sanket Karnik
Sanket Karnik le 14 Fév 2017
Modifié(e) : Sanket Karnik le 20 Mar 2017
I understand that you have code written in MATLAB using legacy interface provided by MATLAB Data Acquisition Toolbox and you want to convert that code to session based interface. Please refer the following link to see how to transition your code from legacy interface to session based interface: https://www.mathworks.com/help/daq/transition-your-code-to-session-based-interface.html
You can also refer to these release notes which describe the functions which were removed from legacy interface and their substitutes(if any) in session based interface: https://www.mathworks.com/help/daq/release-notes.html?rntext=putvalue&startrelease=R2015b&endrelease=R2016a&groupby=release&sortby=descending

Plus de réponses (0)

Catégories

En savoir plus sur Hardware Discovery and Setup dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by