该函数文件通过使用基于sinc函数的不完全余弦展开的新采样方法计算复杂误差函数(也称为Faddeeva函数)[1, 2]。外部域由拉普拉斯连分数计算[3]。该算法的描述在工作[4]中给出。 ---参考[1] SM Abrarov和BM Quine,Appl。数学。计算,258 (2015) 425-435。 https://doi.org/10.1016/j.amc.2015.01.072 [2] SM Abrarov和BM Quine, J. Math。研究,7 (2) (2015) 163-174。 https://doi.org/10.5539/jmr.v7n2p163 [3] W. Gautschi,SIAM J. Numer。分析,7 (1) (1970) 187-198。 https://doi.org/10.1
Voigt Function Algorithm for High-Precision Computation in MATLAB
相关推荐
MATLAB Code for High-Precision Ellipse Detection and Center Localization
This forked from an existing project. Ellipse features are commonly encountered in machine vision, and high-precision detection of ellipse centers is often required. If you are interested in how to precisely draw ellipses, refer to my earlier share: High-quality Ellipse Detection.
Illustration: Th
Matlab
10
2024-11-06
MATLAB S-Function编写指南
S-Function 的扩展能力真的是 Simulink 里的一把利器。写过 Simulink 模型的朋友都遇到过内置模块不够用的情况吧?这时候,自己写个S-Function就挺香的,是要实现一些比较复杂的算法逻辑,或者跟硬件打交道的时候。
M 文件 S-Function用起来比较快,调试方便,就是执行效率差点;MEX 文件写起来虽然麻烦点,但跑起来真是稳、快,适合那种对性能有要求的场景。像什么大数据、实时仿真,直接上 C 写 MEX,绝对不亏。
S-Function靠的是一套回调机制,像初始化、更新、输出这些步骤都有对应的函数,你可以插手每一步操作,想怎么控制流程都行。比如你要做一个有状态控
Matlab
0
2025-06-13
Matlab Development Rootshufflem Function for Eigenvalue Sorting
Rootshufflem is a Matlab function designed for sorting the roots and eigenvalues of a matrix. This tool enhances the analysis of polynomial equations and dynamic systems by providing a systematic way to organize and manipulate eigenvalue data.
Matlab
10
2024-11-03
adjusting_display_precision_in_calculations
在 MATLAB 中,您可以调整变量的显示精度,以便更清楚地查看计算结果的小数位数。使用 format 命令可以设置不同的显示精度。例如,format long 可以显示更多的小数位,而 format short 则显示较少的小数位数。通过这种方式,您可以根据需要控制输出的精度,以适应不同的计算需求。
以下是一些常见的格式设置:- format short:显示 4 位小数。- format long:显示 15 位小数。- format bank:显示 2 位小数,适合货币表示。
调整显示精度不会改变变量的实际值,只影响输出显示。
Matlab
9
2024-11-05
Image Matching MATLAB Function temp_matching
Function temp_matching(t1, t2, upl_1, lor_1, upl_2, lor_2, th, cal)
Function Purpose
This function performs image matching between two input images. The process utilizes upper and lower coordinates for both images to match corresponding features based on a threshold and calculation method.
Input Par
Matlab
10
2024-11-06
Image Blurring Function Implementation in MATLAB
介绍如何使用 MATLAB 实现对图像的 打码 功能。主要步骤包括加载图像、选择要打码的区域,并应用 模糊 处理。最后,保存修改后的图像以供使用。
Matlab
7
2024-11-02
Implementing PCA Algorithm in MATLAB
本项目建立PCA模型,使得PCA算子可以在任意时刻应用。实现基于MATLAB的PCA算法。
Matlab
8
2024-11-04
BP Algorithm Improvement and Implementation in MATLAB
本论文针对BP算法,即当前前馈神经网络训练中应用最多的算法进行改进,并在MATLAB中实现。
Matlab
14
2024-11-03
Algorithm K Parameter in MATLAB Development
在本节中,我们将讨论k的表示和应用。k是一个重要的参数,它在许多算法中起着关键作用。通过正确设置k,可以显著提升模型的性能和准确性。
Matlab
8
2024-11-04