fpt_ChiJu = Math.Abs(arrX).Max();这是我编写的程序,想实现对数组arrX中的每个数字取绝对值,完了之后再取最大值,可是运行之后报错了,,求解答!
fpt_ChiJu = arrX.Select(x => Math.Abs(x)).Max();