代码搜索:2D物理模拟
找到约 10,000 项符合「2D物理模拟」的源代码
代码结果 10,000
www.eeworm.com/read/489040/6481880
m compute_local_maxima.m
function m = compute_local_maxima(M,v,d,eta)
% compute_local_maxima - find the location of local maxima.
%
% m = compute_local_maxima(M,v,d);
%
% M is a 2D image.
% v is the vf indicatin
www.eeworm.com/read/489040/6481884
m plot_curve.m
function plot_curve(c, M, str)
% plot_curve - plot a 2d curve.
%
% plot_curve(c, M,str);
%
% Note that 'c' can also be a cell array of curves.
% - 'M' is a [n,p] image put in background (
www.eeworm.com/read/486149/6544486
m rle_v1.m
% implemenatre codor RL-V3
clc;clear;
filename = 'input.txt';
f = textread(filename,'%s','delimiter','\n','whitespace','');
f = char(f);
% convert 2D array into 1D array...
[n,m] = size(f)
www.eeworm.com/read/484548/6579638
m gauss2dwxy.m
function F = gauss2dwxy(a,data,weights);
% Used by the curve fitter to calculate values for a 2d gaussian
X = data(:,1:size(data,2)/2);
Y = data(:,size(data,2)/2+1:end);
F = (a(1)*exp( -(
www.eeworm.com/read/479669/6684735
m hist2d.m
% hist2d_hdr ([x,y], xbins, ybins, norm)
% Produce a 2D histogram.
%
% Points xi,yi are stored in a 2-column array.
% If ybins is missing, use xbins.
% If bins is a scalar, use that many bins.
%
www.eeworm.com/read/263427/11363345
inp 3ddscm.inp
&PARAS TITLE=' Reaction matrix of the 2D problem - I ',
IPTYPE=1,MDIM=6,IDIM=2,NPOL=4,
SHIFT=0.858443221919622D-1,IPRINT=0,IPRSTP=150,
NMESH=5,RMESH=0.0D0,2000.D0
www.eeworm.com/read/408395/11389997
readme
Star Voyager v0.4.4
(c) Richard Thrippleton
E-mail: ret28@cam.ac.uk
Star Voyager is a Frontier/Elite class game in a more arcade style 2D environment, themed to the 'Star Trek' universe. It utilises
www.eeworm.com/read/401336/11559167
m gaussdx2.m
function GaussKernel_2D = GaussDx2(GDsize, mu, sigma, sigma_width)
% Function GaussKernel_2D = GaussDx2(GDsize, mu, sigma, sigma_width) computes
% 2D Gaussian Derivative
%INPUTS:
% GDSIZE
www.eeworm.com/read/261198/11659592
m plot_matrix.m
function plot_matrix(G, bw)
% PLOT_MATRIX Plot a 2D matrix as a grayscale image, and label the axes
%
% plot_matrix(M)
%
% For 0/1 matrices (eg. adjacency matrices), use
% plot_matrix(M,1)
if nargin
www.eeworm.com/read/250623/12395743
c yanshe2.c
/* fd2d_3.3c 2D TM program with plane source */
#include
#include
#include
#define IE 70 /*IE is the number of cells to the X lable*/
#define JE 70