千里马:如何强制进行数值评估

时间:2017-10-15 20:03:12

标签: maxima

我已经定义了

public void Add(CustomerModel customerModel)
{
    var newCustomer = new Customer
    {
        Name = customerModel.Name
    };
    _context.Customers.Add(newCustomer);

    newCustomer.PropertyChanged += (sender, e) =>
    {
       if (e.PropertyName == nameof(Customer.CustomerID))
       {
           customerModel.ID = newCustomer.CustomerID;
       }
    };
}

当我尝试将log10(x) := log(x) / log(10); ndigits(x) := fix(log10(x) + 1); 应用于某个值时,我似乎无法得到数值结果:

ndigits

我如何在这里得到数值结果?

1 个答案:

答案 0 :(得分:1)

哦,好吧。我不知道为什么Maxima命令行以大写形式自动填充,但Maxima 大小写敏感:

(%i45) ndigits(1);
(%o45) 

                            1