Origin插件,流行插件集合


Origin插件集合,现在流行的Origin插件基本上都有,如果有这方面开发需要的请联系我。
资源截图
代码片段和文件信息
/*------------------------------------------------------------------------------*
 * File Name: MedianFilter.c  *
 * Creation: ER (05/19/04) *
 * Purpose: Perform median filtering on a dataset *
 * Copyright (c) OriginLab Corp.2003 2004 2005 2006 2007 2008 2009 2010 *
 * All Rights Reserved *
 *  *
 * Modification Log: *
 *------------------------------------------------------------------------------*/
 
////////////////////////////////////////////////////////////////////////////////////
#include 
////////////////////////////////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////////////////////////////
// This function performs median filtering on a dataset. At each point in the dataset
// n neighboring points on each side are considered and the median of all those points
// is assigned as the filtered result for that point. At the edges where enough neighbors
// are not present the median is computed with the available number of points.
// Parameters:
// strSrc:  Name of source dataset
// strDest: Name of destination dataset
// iNumPts: Number of points on either side to consider for computing median
//
// Return:
// 0: success
// non-zero: failure
int median_filter(string strSrc string strDest int iNumPts double dPerc = 50)
{
// Declare datasets and check for validity
Dataset dsSrc(strSrc);
Dataset dsDest(strDest);
if(!dsSrc || !dsDest)
{
printf(“Invalid Dataset(s)!
“);
return -1;
}
// Check size of number of neighbors for computing median
int iSize = dsSrc.GetSize();
if( (iNumPts < 1) || ((iNumPts * 2) >= iSize/2) )
{
printf(“Invalid group size!
“);
return -2;
}
// Set size of result to be same as source
dsDest.SetSize(iSize);

// Loop over all points in source and find median of neighboring points
waitCursor wCursor;
for(int ii = 0; ii < iSize - 1; ii++)
{
// Set lower and upper bounds on source data to only include current neighbors for computing median
dsSrc.SetLowerBound(ii - iNumPts);
dsSrc.SetUpperBound(ii + iNumPts);
// Compute median and store to result
double dMedian;
Data_percentiles(&dsSrc &dPerc &dMedian 1);
dsDest[ii] = dMedian;
}

// Reset lower and upper bounds of soure dataset
dsSrc.SetLowerBound(0);
dsSrc.SetUpperBound(iSize - 1);

// Return success
return 0;
}
// end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        967  2006-04-23 16:19  Origin插件集合LabelXYLabelXY.opk

     文件     100092  2006-04-23 16:19  Origin插件集合LabelXYOriginLab File Exchange - File Details.pdf

     文件       2526  2006-04-23 16:50  Origin插件集合MedianFilterMedianFilter.c

     文件      84632  2006-04-23 16:52  Origin插件集合MedianFilterfid=83.pdf

     文件      12657  2006-04-23 16:42  Origin插件集合NAGSpecialFunctionsNAGSpecialFunctions.c

     文件      71420  2006-04-23 16:43  Origin插件集合NAGSpecialFunctionsfid=40.pdf

     文件      84356  2006-04-23 16:03  Origin插件集合ol-estimate onsetOL_Estimate_Onset.OPK

     文件      10752  2006-04-23 16:04  Origin插件集合ol-estimate onset新建 Microsoft Word 文档.doc

     文件     111173  2006-04-23 16:07  Origin插件集合ol-estimate onset
eadme.pdf

     文件       2485  2006-04-23 16:02  Origin插件集合OL_Twopoint_DistanceOL_Twopoint_Distance.opk

     文件        374  2006-04-23 16:02  Origin插件集合OL_Twopoint_Distance新建 文本文档.txt

     文件     157655  2006-04-20 10:15  Origin插件集合ONMR 7.0OriginLab File Exchange - File Details.mht

     文件    1355595  2006-04-20 10:18  Origin插件集合ONMR 7.0onmr70.zip

     文件     154265  2006-04-20 10:04  Origin插件集合Peak Analysis ToolOriginLab File Exchange - File Details.mht

     文件       3448  2006-04-20 10:04  Origin插件集合Peak Analysis ToolPeakAnalysis.opk

     文件       3448  2006-04-23 11:01  Origin插件集合PeakAnalysisPeakAnalysis.opk

     文件       1937  2006-04-23 11:02  Origin插件集合PeakAnalysis
eadme.txt

     文件       1419  2006-04-23 15:59  Origin插件集合pick2pointPick2Points.ogs

     文件       1471  2006-04-23 16:01  Origin插件集合pick2point新建 文本文档.txt

     文件      10400  2006-04-23 16:22  Origin插件集合Scale_TScale_T.opk

     文件     205432  2006-04-23 16:22  Origin插件集合Scale_TOriginLab File Exchange - File Details.pdf

     文件       1730  2006-04-23 16:25  Origin插件集合scrollScroll.opk

     文件     103142  2006-04-23 16:26  Origin插件集合scrollOriginLab File Exchange - File Details.pdf

     文件     177771  2006-04-20 10:36  Origin插件集合Statistics on graphOriginLab File Exchange - File Details.mht

     文件       1146  2006-04-20 10:36  Origin插件集合Statistics on graphStatongraph.opk

     文件       2497  2006-04-23 16:12  Origin插件集合TangentTangent.opk

     文件     115187  2006-04-23 16:13  Origin插件集合TangentOriginLab File Exchange - File Details.pdf

     文件     115887  2006-04-20 10:17  Origin插件集合TangentsOriginLab File Exchange - File Details.mht

     文件       2497  2006-04-20 10:17  Origin插件集合TangentsTangent.opk

     文件      61534  2006-04-20 10:21  Origin插件集合The PFM 7.5 Evaluation (Demo)Peak Fitting Module software demo-evaluation download.mht

............此处省略64个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)