代码搜索:Unity
找到约 236 项符合「Unity」的源代码
代码结果 236
www.eeworm.com/read/147422/5729634
m w1_unity.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% w1_unity.m
%
% jmw
% 6/8/94
%
% Scale Factor Window:
% set all new values and sliders to UNITY (1.0)
%
%%%%%
www.eeworm.com/read/405131/11470984
dll microsoft.practices.unity.dll
www.eeworm.com/read/402480/2321362
c topo_unity_component.c
/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
www.eeworm.com/read/402480/2321363
c topo_unity_cart_map.c
/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
www.eeworm.com/read/402480/2321365
c topo_unity_graph_map.c
/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
www.eeworm.com/read/221024/14777213
html http:^^www.cs.utexas.edu^users^psp^newunity.html
MIME-Version: 1.0
Server: CERN/3.0
Date: Tuesday, 07-Jan-97 15:47:30 GMT
Content-Type: text/html
Content-Length: 1189
Last-Modified: Thursday, 17-Nov-94 21:13:28 GMT
New Unity
www.eeworm.com/read/386060/8766693
m test_rand_special_orthogonal.m
% Tests the random special orthogonal matrix function.
n = 10;
X = rand_special_orthogonal(n);
% Test that all rows and columns have unity magnitude.
for col = 1:10,
if abs(norm(X(:,col))-1) >
www.eeworm.com/read/221024/14769311
edu^users^psp^ http:^^www.cs.utexas.edu^users^psp^
MIME-Version: 1.0
Server: CERN/3.0
Date: Monday, 06-Jan-97 19:47:00 GMT
Content-Type: text/html
Content-Length: 5239
Last-Modified: Monday, 25-Nov-96 19:47:27 GMT
www.eeworm.com/read/423290/10573957
cpp 大整数乘法.cpp
#include
#include
using namespace std;
char z[300]={0};
void Multi(char *p, char *q);
int main()
{
char x[300],y[300];
cin>>x>>y;
Multi(x,y);
cout
www.eeworm.com/read/273787/10901221
m antieye.m
function J = antieye(N)
% Produce a antidiagnal matrix, in which the elements in
% antidiagnal are unity and other elements are zero
x = ones(1,N);
J = rot90(diag(x));