matlab programını delphiye cevirmek .?

Başlatan klax, 03 Temmuz 2012, 23:23:45

klax

http://hades.mech.northwestern.edu/index.php/I2C_Motor_Controller matlab calısan procedurelerı seri iletişim uzerınden calısyor bunları delphiye nasıl cevirebilirim bir ornek matlab proceduru
function set_mc_kd(kd, device, s)
%set_mc_kd takes a gain constant input, device, and serial object
%   this information is exported to the master of the motor controller and
%   the adjusts the velocity to the desired level
%
%   This function supports inputs from 0 to 2^31


%Record of Revisions:
%       Date                Programmer         Description of Change
%       ====                ==========         =====================
%     3/14/2007            Matthew Turpin      Original Code


    %lookup of device hex address
    dev = devlookup(device);
    
    %convert to a string
    str = [dev 'I' dec2hex(kd+2^31)];
    str(1,4) = '0';
    
    %transmit string
    for ii = 1:11
        fprintf(s, '%s', str(1,ii));
    end
end
TB2EOS