⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 neuronstates.cs

📁 基于hopheid的人工神经网络模式识别
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace HopfieldNeuralNetwork
{
    /// <summary>
    /// Static class, which describes neuron states.
    /// </summary>
    public static class NeuronStates
    {
        /// <summary>
        /// If neuron orienatated along local field, then it's state is equal to 1
        /// </summary>
        public static int AlongField = 1;
        /// <summary>
        /// If neuron orienatated against local field, then it's state is equal to -1
        /// </summary>
        public static int AgainstField = -1;     
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -