Skip to content
Snippets Groups Projects
Select Git revision
  • 550b42345a0235f3bc888778c6cc3a34f6a2919c
  • master default protected
  • LUFA-170418
  • LUFA-151115
  • LUFA-140928
  • LUFA-140302
  • LUFA-130901
  • LUFA-130901-BETA
  • LUFA-130303
  • LUFA-120730
  • LUFA-120730-BETA
  • LUFA-120219
  • LUFA-120219-BETA
  • LUFA-111009
  • LUFA-111009-BETA
  • LUFA-110528
  • LUFA-110528-BETA
17 results

USARTDescriptors.c

Blame
  • jacobian_foot.m 460 B
    function J = jacobian_foot(in1,in2)
    %JACOBIAN_FOOT
    %    J = JACOBIAN_FOOT(IN1,IN2)
    
    %    This function was generated by the Symbolic Math Toolbox version 8.7.
    %    02-Dec-2021 21:48:14
    
    l_AC = in2(22,:);
    l_DE = in2(23,:);
    l_OB = in2(21,:);
    th1 = in1(1,:);
    th2 = in1(2,:);
    t2 = cos(th1);
    t3 = sin(th1);
    t4 = th1+th2;
    t5 = cos(t4);
    t6 = sin(t4);
    t7 = l_AC.*t5;
    t8 = l_AC.*t6;
    J = reshape([t7+l_DE.*t2+l_OB.*t2,t8+l_DE.*t3+l_OB.*t3,t7,t8,1.0,0.0,0.0,1.0],[2,4]);