代码搜索:two-dimensional
找到约 658 项符合「two-dimensional」的源代码
代码结果 658
www.eeworm.com/read/213502/15133083
m felpt2t3.m
function [m]=felpt2t3(x1,y1,x2,y2,x3,y3)
%-------------------------------------------------------------------
% Purpose:
% element matrix for transient term of two-dimensional
% Laplac
www.eeworm.com/read/173927/9629855
m felp2dt3.m
function [k]=felp2dt3(x1,y1,x2,y2,x3,y3)
%-------------------------------------------------------------------
% Purpose:
% element matrix for two-dimensional Laplace's equation
% using
www.eeworm.com/read/173927/9629872
m felpt2t3.m
function [m]=felpt2t3(x1,y1,x2,y2,x3,y3)
%-------------------------------------------------------------------
% Purpose:
% element matrix for transient term of two-dimensional
% Laplac
www.eeworm.com/read/161772/10376146
c ex08_07.c
/* Using two-dimensional arrays and rand() */
#include
#include
/* Declare the array */
int array[5][4];
int a, b;
int main( void )
{
for ( a = 0; a < 5; a++ )
www.eeworm.com/read/346994/11706399
c ex08_07.c
/* Using two-dimensional arrays and rand() */
#include
#include
/* Declare the array */
int array[5][4];
int a, b;
int main( void )
{
for ( a = 0; a < 5; a++ )
www.eeworm.com/read/419474/10866203
m qrupa.m
% qrupa.m
% Scope: This MATLAB macro implements the updating algorithm [1] for Q-R
% factorization of the modified measurement matrix when a new
%
www.eeworm.com/read/272848/10940847
cpp irregulararray.cpp
// Create an irregular two-dimensional array of type int.
#include
using namespace std;
int main(void)
{
int numberOfRows = 5;
// define the length of each of the fiv
www.eeworm.com/read/464335/7165241
m brownian.m
% BROWNIAN Two-dimensional random walk.
% What is the expansion rate of the cloud of particles?
shg
clf
set(gcf,'doublebuffer','on')
delta = .002;
x = zeros(100,2);
h = plot(x(:,1),x(:,2)
www.eeworm.com/read/452695/7436329
c program7_08.c
/* Program 7.8 Getting the values in a two-dimensional array */
#include
int main(void)
{
char board[3][3] = {
{'1','2','3'},
{'4','5