Dupire.DupireProcess.isLog C# (CSharp) 메소드

isLog() 공개 메소드

Sets the passed array with a Boolean stating if the process must be simulated as a log-normal process. In this case it's a log-normal process so the first component is set to true.
public isLog ( bool &isLog ) : void
isLog bool /// A reference to the array to be set with the required information. ///
리턴 void
        public void isLog(ref bool[] isLog)
        {
            isLog[0] = true;
        }