• 大小: 19.39MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-03
  • 语言: C#
  • 标签: math.NET  

资源简介

math.NET 作为c#中函数库的基本扩展,具有丰富的数学函数

资源截图

代码片段和文件信息

// 
// Math.NET Numerics part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2013 Math.NET
//
// Permission is hereby granted free of charge to any person
// obtaining a copy of this software and associated documentation
// files (the “Software“) to deal in the Software without
// restriction including without limitation the rights to use
// copy modify merge publish distribute sublicense and/or sell
// copies of the Software and to permit persons to whom the
// Software is furnished to do so subject to the following
// conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED “AS IS“ WITHOUT WARRANTY OF ANY KIND
// EXPRESS OR IMPLIED INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM DAMAGES OR OTHER LIABILITY
// WHETHER IN AN ACTION OF CONTRACT TORT OR OTHERWISE ARISING
// FROM OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.
// 

/* This code is a port and simplification of
  adler32.c -- compute the Adler-32 checksum of a data stream
  Copyright (C) 1995-2011 Mark Adler
  zlib license:
  Copyright (C) 1995-2012 Jean-loup Gailly and Mark Adler

  This software is provided ‘as-is‘ without any express or implied
  warranty.  In no event will the authors be held liable for any damages
  arising from the use of this software.

  Permission is granted to anyone to use this software for any purpose
  including commercial applications and to alter it and redistribute it
  freely subject to the following restrictions:

  1. The origin of this software must not be misrepresented; you must not
     claim that you wrote the original software. If you use this software
     in a product an acknowledgment in the product documentation would be
     appreciated but is not required.
  2. Altered source versions must be plainly marked as such and must not be
     misrepresented as being the original software.
  3. This notice may not be removed or altered from any source distribution.

  Jean-loup Gailly        Mark Adler
  jloup@gzip.org          madler@alumni.caltech.edu

*/

namespace MathNet.Numerics.Data.Matlab
{
    internal static class Adler32
    {
        /* largest prime smaller than 65536 */
        const int base = 65521;
        /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(base-1) <= 2^32-1 */
        const int Nmax = 5552;

        /// 
        /// Computes the Adler-32 checksum of the given data.
        /// 

        /// The data to create the checksum.
        /// The

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

    .......       236  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\.editorconfig

    .......       444  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\.gitattributes

    .......      1023  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\.gitignore

    .......       487  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\.mailmap

    .......     28208  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\.paket\paket.bootstrapper.exe

    .......        59  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\.travis.yml

    .......       131  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\appveyor.yml

    .......        67  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\build\.gitignore

    .......       823  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\build\MathNet.Numerics.Extension.nuspec

    .......       996  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\build\MathNet.Numerics.nuspec

    .......       801  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\build\NativeProvider.targets

    .......       200  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\build.cmd

    .......     44597  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\build.fsx

     文件        488  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\build.sh

    .......      5901  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\CONTRIBUTING.md

    .......      3084  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\CONTRIBUTORS.md

    .......    102013  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\Codeplex-5667.csv

    .......      1826  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\Github-Cureos-1.csv

    .......     77249  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\Matlab\A.mat

    .......    426032  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\Matlab\collection-nocompress.mat

    .......    148251  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\Matlab\collection.mat

    .......    462722  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\Matlab\complex.mat

    .......       414  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\Matlab\matrices.txt

    .......   1036628  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\Matlab\sparse-large.mat

    .......      9262  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\Matlab\sparse-small.mat

    .......    101564  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\Matlab\sparse_complex.mat

    .......      1003  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\Matlab\v.mat

    .......    108923  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\MatrixMarket\bp___200.mtx

    .......       542  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\MatrixMarket\can24_pattern_symmetric_coordinate_24.mtx

    .......   1619373  2015-09-27 08:18  mathnet-numerics-master\mathnet-numerics-master\data\MatrixMarket\fidap007.mtx

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

评论

共有 条评论

相关资源