本文整理汇总了C#中ILArray.Repmat方法的典型用法代码示例。如果您正苦于以下问题:C# ILArray.Repmat方法的具体用法?C# ILArray.Repmat怎么用?C# ILArray.Repmat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ILArray
的用法示例。
在下文中一共展示了ILArray.Repmat方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Test_Repmat
public void Test_Repmat() {
int errorCode = 0;
try {
ILArray<double> A = new ILArray<double>(new double[24] {0,1,2,3,4,5,6,7,8,9
,10,11,12,13,14,15,16,17,18,19,20,21,22,23}, 6, 4);
ILArray<double> B = A.Repmat(1, 1);
Info("Test_Repmat needs to be implemented!");
Success("Test_Repmat successfull");
} catch (Exception e) {
Error("Test_Repmat failed at errorCode: " + errorCode + " Reason: " + e.Message);
}
}