代码搜索:旋转变压器
找到约 1,743 项符合「旋转变压器」的源代码
代码结果 1,743
www.eeworm.com/read/38039/1092821
mnu solidopts.mnu
SOLID#OPTS 实体选项
# remove the # sign and enter foreign help string in this line
Extrude 拉伸
Generate feature by extruding a single section.
拉伸单个截面来生成特征。
Revolve 旋转
Generate feature by revolving a singl
www.eeworm.com/read/38039/1092948
mnu jnew_solidopts.mnu
SOLID#OPTS# 实体选项
# remove the # sign and enter foreign help string in this line
Extrude 拉伸
Generate feature by extruding a single section.
拉伸单个截面来生成特征。
Revolve 旋转
Generate feature by revolving a sing
www.eeworm.com/read/372034/9524248
asv matalignimgplanes.asv
function RPlanes = MatAlignImgPlanes(t, dx, dy)
% MATALIGNIMGPLANES Return the Matrix used for aligning the image planes
%% 图像平面旋转变换矩阵
Rlanes = [dx^2 + dy * cos(t) dx * dy * (1-cos(t)) dy * sin(
www.eeworm.com/read/457537/7324118
cs form1.cs
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace Example049_旋转_反射和扭曲图像
{
///
/
www.eeworm.com/read/462950/1541508
cs form1.cs
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace Example049_旋转_反射和扭曲图像
{
///
/
www.eeworm.com/read/354849/3073419
cs form1.cs
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace Example049_旋转_反射和扭曲图像
{
///
/
www.eeworm.com/read/327393/13082147
m r2r.m
function [R]=r2R(r)
%根据旋转向量得到旋转矩阵,r为3*1,R为3*3
%参考书籍:
%马颂德,张正友.计算机视觉.科学出版社,pp97-98,1998年1月
o=norm(r);
if o == 0
R=eye(3,3);
else
ox=pi*o/180;
rx=[0 -r(3) r(2);r(3) 0 -r(1);-r(2) r(1) 0]