//整理 byRobinKinfrom DevonIT
include
#include "mtl/mtl.h"
#include "mtl/utils.h"
#include "mtl/linalg_vec.h"
/*
Sample output;
X: [1,5,3,1,]
The L-2 norm of X is 6
*/
using namespace mtl;
typedef external_vec
【MTL|MTL 向量欧基里德范数 示例】int
main()
{
double data[] = {1,5,3,1};
Vec x(data, 4);
double s = two_norm(x);
std::cout << "X: ";
print_vector(x);
std::cout << "The L-2 norm of X is " << s << std::endl;
}
推荐阅读
- c|C_使用while语句求两整数的最小公倍数与最大公约数
- android|Android驱动例子(LED灯控制)
- 软件编程|STL使用总结
- Android|Android性能优化之布局优化
- Linux|关于iptables
- C++|对结构体vector进行sort(C++)
- Socket套接字|获取本机IP地址
- C++学习|数组去重
- C++学习|Config Class