// DrawFrogView.cpp : implementation of the CDrawFrogView class//#include"stdafx.h"#include"DrawFrog.h"#include"DrawFrogDoc.h"#include"DrawFrogView.h"#include"math.h"#definePI3.14#ifdef_DEBUG#definenewDEBUG_NEW#undefTHIS_FILEstaticchar THIS_FILE[]=__FILE__;#endif/// CDrawFrogViewIMPLEMENT_DYNCREATE(CDrawFrogView, CView)BEGIN_MESSAGE_MAP(CDrawFrogView, CView)//{{AFX_MSG_MAP(CDrawFrogView)// NOTE - the ClassWizard will add and remove mapping macros here.// DO NOT EDIT what you see in these blocks of generated code!//}}AFX_MSG_MAP// Standard printing commandsON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)END_MESSAGE_MAP()/// CDrawFrogView construction/destructionCDrawFrogView::CDrawFrogView(){// TODO: add construction code here
import numpy as np
a np.array([1,2])
b np.array([3,4])
c a b
# 11e np.array([[1,2],[3,4]])
f np.array([[5,6],[7,8]])g e f
#array([[19, 22],[43, 50]])内积,也称为点积或数量积,是数学中接受在实数R上的两个向量并返回一个实数值标量的…