-
大小: 101KB文件类型: .zip金币: 2下载: 0 次发布日期: 2021-06-04
- 语言: Matlab
- 标签: delaunay tri computationa
资源简介
使用Matlab实现了delaunay三角剖分,delaunay三角形具有一些非常好的性质,可以用来生成Voronoi图。

代码片段和文件信息
%本函数实现构造三角形外接圆,输入为三角形的三个顶点,输出为外接圆圆心和外接圆半径
function [circleCenter R] = circumcircleBuilding(points)
circleCenter = [(points(21)^2+points(22)^2) - (points(11)^2+points(12)^2) ...
(points(31)^2+points(32)^2) - (points(21)^2+points(22)^2)]...
/ ([2*(points(21)-points(11)) 2*(points(31)-points(21)); ...
2*(points(22)-points(12)) 2*(points(32)-points(22))]);
temp = circleCenter - points(1 :);
temp = temp.^2;
R = sqrt(sum(temp));
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 550 2018-12-06 18:13 circumcircleBuilding.m
文件 286 2019-01-01 13:14 DT1.m
文件 53782 2018-12-10 11:27 DT1结果图.png
文件 6375 2019-01-01 13:03 DT2.m
文件 62153 2018-12-10 11:28 DT2结果图.png
文件 198 2018-12-07 12:06 isInCircle.m
文件 453 2018-12-10 10:50 isInCircleRight.m
文件 71 2018-12-13 11:18 备注.txt
- 上一篇:l1-svd稀疏重构算法
- 下一篇:广义相关时延估计法权函数
相关资源
- 3点GPS定位MATLAB仿真
- Optometrika 透镜成像模拟
- Photometric stereo Matlab code
- Matlab 三维点云 三角化
- petri net matlab simulation
- Computational Statistics Handbook with MATLAB统
- Deblurring Images Matrices Spectra and Filteri
- Computational Fourier Optics _ a MATLAB tutori
- MATLAB数值积分方法在电气工程中的应
- Matlab计量经济学工具箱官方英文手册
- matlab econometrics toolbox
-
PCA SPE T2 Contribution Simuli
nk matlab - PID and Predictive Control of Electrical Drive
- Introductionto Matrix Analysis
- matlab开发-String2Hash
- MatrixCompletion
- 多分类问题中混淆矩阵(Confusion Mat
- Delaunay三角划分的Matlab实现
- GoDec:Randomized Low-rank & Sparse Matrix Deco
- Delaunay算法 - 三角形网格自动划分
- Petri网MATLAB 工具包-MATLAB Petri Net Tool
- matlab——PSO算法以及两种适应度函数
- Matrix completion & Tensor completion经典算法
- eventtrigger.m
- matlab开发-使用xFoiland ParseCGeometric参数
- matlab开发-kmvcreditriskmodel违约风险概率
- Matlab生成Voronoi图代码
- ntripclient-MATLAB
- 遗传算法求解Rastrigin函数
- Matrix_inversion_Multiuser_MIMO
评论
共有 条评论