本文介绍了C#中的规范化(如何在C#中获得norm2)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

hi
我需要知道在c#中是否直接有针对norm2和norm1的任何方法,因为您知道这些函数在矢量的数学运算中使用了……但是C#中是否有任何方法可以做到?

hi
I need to know if there is any method for norm2 and norm1 directly in c# , as you know these functions are used in math for vectors ... but is there any method in C# that can do so?

推荐答案

public static void Normalize(this Vector vectorObj,...)
{
    /// write the normalization logic here
}



希望您在找同样的东西.



I hope you were looking for the same.




这篇关于C#中的规范化(如何在C#中获得norm2)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 02:48