代码搜索:Rotates

找到约 176 项符合「Rotates」的源代码

代码结果 176
www.eeworm.com/read/398337/7993850

m givrot.m

function [G] = givrot (x); %GIVROT % [G] = givrot (x); % returns Givens-rotation matrix % [c -s; s c] which rotates x(2) to zero. if (x(2) ~= 0), r = norm (x, 2); G = 1/r*[x(1) x(2);
www.eeworm.com/read/299625/6285301

m givrot.m

function [G] = givrot (x); %GIVROT % [G] = givrot (x); % returns Givens-rotation matrix % [c -s; s c] which rotates x(2) to zero. if (x(2) ~= 0), r = norm (x, 2); G = 1/r*[x(1) x(2);
www.eeworm.com/read/484356/6586167

m givrot.m

function [G] = givrot (x); %GIVROT % [G] = givrot (x); % returns Givens-rotation matrix % [c -s; s c] which rotates x(2) to zero. if (x(2) ~= 0), r = norm (x, 2); G = 1/r*[x(1) x(2);
www.eeworm.com/read/262186/11602626

m givrot.m

function [G] = givrot (x); %GIVROT % [G] = givrot (x); % returns Givens-rotation matrix % [c -s; s c] which rotates x(2) to zero. if (x(2) ~= 0), r = norm (x, 2); G = 1/r*[x(1) x(2);
www.eeworm.com/read/157074/11741507

m givrot.m

function [G] = givrot (x); %GIVROT % [G] = givrot (x); % returns Givens-rotation matrix % [c -s; s c] which rotates x(2) to zero. if (x(2) ~= 0), r = norm (x, 2); G = 1/r*[x(1) x(2);
www.eeworm.com/read/154516/11949123

m roty_.m

function [xd,yd,zd]=roty_(x,y,z,th) cosf=cos(th*pi/180);sinf=sin(th*pi/180); yd =y; xd = cosf.*x + sinf.*z; zd = - sinf.*x + cosf.*z; % roty_.m % roty_(x,y,z,th) rotates a vector [x,y,z] % th
www.eeworm.com/read/154516/11949125

m rotx_.m

% rotx_.m % rotx_(x,y,z,th) rotates a vector [x,y,z] % th degrees counter-clockwise about % the x-axis. See Appendix B; List B.1 function [xd,yd,zd]=rotx_(x,y,z,th) cosf=cos(th*pi/180);sinf=sin
www.eeworm.com/read/154516/11949127

m rotz_.m

function [xd,yd,zd]=rotz_(x,y,z,phi) cosf=cos(phi*pi/180);sinf=sin(phi*pi/180); xd = cosf *x - sinf *y; yd = sinf *x + cosf *y; zd =z; % rotz_.m % rotz_(x,y,z,th) rotates a vector [x,y,z] %
www.eeworm.com/read/256398/12002007

m givrot.m

function [G] = givrot (x); %GIVROT % [G] = givrot (x); % returns Givens-rotation matrix % [c -s; s c] which rotates x(2) to zero. if (x(2) ~= 0), r = norm (x, 2); G = 1/r*[x(1) x(2);
www.eeworm.com/read/130383/14196300

m givrot.m

function [G] = givrot (x); %GIVROT % [G] = givrot (x); % returns Givens-rotation matrix % [c -s; s c] which rotates x(2) to zero. if (x(2) ~= 0), r = norm (x, 2); G = 1/r*[x(1) x(2);