zoukankan      html  css  js  c++  java
  • (3) esp8266 官方库文件,没有求逆函数

    下载库文件

    #include <MatrixMath.h>
    
    
    #define N  (2)
    
    mtx_type A[N][N];
    mtx_type B[N][N];
    mtx_type C[N][N];
    mtx_type v[N];      // This is a row vector
    mtx_type w[N];
    
    mtx_type maxVal = 10;  // maxValimum random matrix entry range
    
    void setup()
    {
    	Serial.begin(9600);
    
    	// Initialize matrices
    	for (int i = 0; i < N; i++)
    	{
    		v[i] = i + 1;                  // vector of sequential numbers
    		for (int j = 0; j < N; j++)
    		{
    			A[i][j] = random(maxVal) - maxVal / 2.0f; // A is random
    			if (i == j)
    			{
    				B[i][j] = 1.0f;                  // B is identity
    			}
    			else
    			{
    				B[i][j] = 0.0f;
    			}
    		}
    	}
    
    }
    
    void loop()
    {
    
    	Matrix.Multiply((mtx_type*)A, (mtx_type*)B, N, N, N, (mtx_type*)C);
    
    	Serial.println("
    After multiplying C = A*B:");
    	Matrix.Print((mtx_type*)A, N, N, "A");
    
    	Matrix.Print((mtx_type*)B, N, N, "B");
    	Matrix.Print((mtx_type*)C, N, N, "C");
    	Matrix.Print((mtx_type*)v, N, 1, "v");
    
    	Matrix.Add((mtx_type*) B, (mtx_type*) C, N, N, (mtx_type*) C);
    	Serial.println("
    C = B+C (addition in-place)");
    	Matrix.Print((mtx_type*)C, N, N, "C");
    	Matrix.Print((mtx_type*)B, N, N, "B");
    
    	Matrix.Copy((mtx_type*)A, N, N, (mtx_type*)B);
    	Serial.println("
    Copied A to B:");
    	Matrix.Print((mtx_type*)B, N, N, "B");
    
    	Matrix.Invert((mtx_type*)A, N);
    	Serial.println("
    Inverted A:");
    	Matrix.Print((mtx_type*)A, N, N, "A");
    
    	Matrix.Multiply((mtx_type*)A, (mtx_type*)B, N, N, N, (mtx_type*)C);
    	Serial.println("
    C = A*B");
    	Matrix.Print((mtx_type*)C, N, N, "C");
    
    	// Because the library uses pointers and DIY indexing,
    	// a 1D vector can be smoothly handled as either a row or col vector
    	// depending on the dimensions we specify when calling a function
    	Matrix.Multiply((mtx_type*)C, (mtx_type*)v, N, N, 1, (mtx_type*)w);
    	Serial.println("
     C*v = w:");
    	Matrix.Print((mtx_type*)v, N, 1, "v");
    	Matrix.Print((mtx_type*)w, N, 1, "w");
    
    	while(1);
    }
    

      

  • 相关阅读:
    关于ARMv8指令的几个问题
    cocos2d-x2.2.3 Layer分析
    unity3D iTween的使用
    lucene索引库的增删改查操作
    【剑指offer】数值的整数次方
    Integer to Roman
    HTML标签之marquee
    Django练习——TodoList
    html5式程序员表白
    00085_异常
  • 原文地址:https://www.cnblogs.com/kekeoutlook/p/10800337.html
Copyright © 2011-2022 走看看