代码搜索:Rotates
找到约 176 项符合「Rotates」的源代码
代码结果 176
www.eeworm.com/read/295595/8151065
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/393865/8258000
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/113576/15453114
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/407122/11428872
m initial_veriable.m
function Initial_veriable
global theta1...
theta2... %wrist, that is, cluth of tool rotates round x-axis
theta3... %wrist that rotates round y-axis
theta4... %wrist,that is
www.eeworm.com/read/482678/6621151
m rotateimage.m
function[Image] = RotateImage(Image, degrees)
% RotateImage - Rotates an image by X degrees
%
% Image_Rotated = RotateImage(Image, degrees)
%
% Rotates an image by the angle degrees in the
%
www.eeworm.com/read/305575/13765631
m waverot.m
function[w,err]=waverot(w)
%WAVEROT Rotates complex-valued wavelets.
%
% WAVEROT(W) where W is a complex-valued analytic wavelet, rotates
% W such that the real part is even and the imaginary part
www.eeworm.com/read/405754/2285392
c rotate.c
/*
proc: rotate_push8_int - rotates a charimage about a point using an efficient
proc: pixel pushing algorithm and integer arithmetic - fast but "noisy"
proc: rotate_push8_float - rotates a charim
www.eeworm.com/read/449504/7502303
m rotation.m
function nellecoord=rotation(coord,angle)
% PURPOSE : This function rotates objects of spatial coordinates type
%------------------------------------------------------------------------------
% USAGE
www.eeworm.com/read/18434/788677
v rotate.v
module rotate(q, data, clk, r_l, rst); // rotates bits or loads
output [7:0] q;
input [7:0] data;
input clk, r_l, rst;
reg [7:0] q;
// when r_l is high, it rotates; if low, it loads data
alway
www.eeworm.com/read/18434/788737
v rotate.v
module rotate(q, data, clk, r_l, rst); // rotates bits or loads
output [7:0] q;
input [7:0] data;
input clk, r_l, rst;
reg [7:0] q;
// when r_l is high, it rotates; if low, it loads data
alway