<?xml version="1.0" encoding="utf-8"?><span>
<doc>
<assembly>
<name>System.Numerics.Vectors</name>
</assembly>
<members>
<member name="T:System.Numerics.Matrix3x2">
<summary>Represents a 3x2 matrix.</summary>
</member>
<member name="M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>Creates a 3x2 matrix from the specified components.</summary>
<param name="m11">The value to assign to the first element in the first row.</param>
<param name="m12">The value to assign to the second element in the first row.</param>
<param name="m21">The value to assign to the first element in the second row.</param>
<param name="m22">The value to assign to the second element in the second row.</param>
<param name="m31">The value to assign to the first element in the third row.</param>
<param name="m32">The value to assign to the second element in the third row.</param>
</member>
<member name="M:System.Numerics.Matrix3x2.Add(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)">
<summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>
<param name="value1">The first matrix.</param>
<param name="value2">The second matrix.</param>
<returns>The matrix that contains the summed values of <paramref name="value1">value1</paramref> and <paramref name="value2">value2</paramref>.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateRotation(System.Single)">
<summary>Creates a rotation matrix using the given rotation in radians.</summary>
<param name="radians">The amount of rotation, in radians.</param>
<returns>The rotation matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateRotation(System.Single,System.Numerics.Vector2)">
<summary>Creates a rotation matrix using the specified rotation in radians and a center point.</summary>
<param name="radians">The amount of rotation, in radians.</param>
<param name="centerPoint">The center point.</param>
<returns>The rotation matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single)">
<summary>Creates a scaling matrix from the specified X and Y components.</summary>
<param name="xScale">The value to scale by on the X axis.</param>
<param name="yScale">The value to scale by on the Y axis.</param>
<returns>The scaling matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Numerics.Vector2)">
<summary>Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center.</summary>
<param name="scale">The uniform scale to use.</param>
<param name="centerPoint">The center offset.</param>
<returns>The scaling matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single,System.Numerics.Vector2)">
<summary>Creates a scaling matrix that is offset by a given center point.</summary>
<param name="xScale">The value to scale by on the X axis.</param>
<param name="yScale">The value to scale by on the Y axis.</param>
<param name="centerPoint">The center point.</param>
<returns>The scaling matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateScale(System.Single)">
<summary>Creates a scaling matrix that scales uniformly with the given scale.</summary>
<param name="scale">The uniform scale to use.</param>
<returns>The scaling matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2)">
<summary>Creates a scaling matrix from the specified vector scale.</summary>
<param name="scales">The scale to use.</param>
<returns>The scaling matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2,System.Numerics.Vector2)">
<summary>Creates a scaling matrix from the specified vector scale with an offset from the specified center point.</summary>
<param name="scales">The scale to use.</param>
<param name="centerPoint">The center offset.</param>
<returns>The scaling matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single)">
<summary>Creates a skew matrix from the specified angles in radians.</summary>
<param name="radiansX">The X angle, in radians.</param>
<param name="radiansY">The Y angle, in radians.</param>
<returns>The skew matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single,System.Numerics.Vector2)">
<summary>Creates a skew matrix from the specified angles in radians and a center point.</summary>
<param name="radiansX">The X angle, in radians.</param>
<param name="radiansY">The Y angle, in radians.</param>
<param name="centerPoint">The center point.</param>
<returns>The skew matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateTranslation(System.Numerics.Vector2)">
<summary>Creates a translation matrix from the specified 2-dimensional vector.</summary>
<param name="position">The translation position.</param>
<returns>The translation matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateTranslation(System.Single,System.Single)">
<summary>Creates a translation matrix from the specified X and Y components.</summary>
<param name="xPosition">The X position.</param>
<param name="yPosition">The Y position.</param>
<returns>The translation matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.Equals(System.Numerics.Matrix3x2)">
<summary>Returns a value that indicates whether this instance and another 3x2 matrix are equal.</summary>
<param name="other">The other matrix.</param>
<returns>true if the two matrices are equal; otherwise, false.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.Equals(System.Object)">
<summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>
<param name="obj">The object to compare with the current instance.</param>
<returns>true if the current instance and <paramref name="obj">obj</paramref> are equal; otherwise, false```. If <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.GetDeterminant">
<summary>Calculates the determinant for this matrix.</summary>
<returns>The determinant.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.GetHashCode">
<summary>Returns the hash code for this instance.</summary>
<returns>The hash code.</returns>
</member>
<member name="P:System.Numerics.Matrix3x2.Identity">
<summary>Gets the multiplicative identity matrix.</summary>
<returns>The multiplicative identify matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.Invert(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2@)">
<summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>
<param name="matrix">The matrix to invert.</param>
<param name="result">When this method returns, contains the inverted matrix if the operation succeeded.</param>
<returns>true if <paramref name="matrix">matrix</paramref> was converted successfully; otherwise, false.</returns>
czysoft
- 粉丝: 21
- 资源: 19
最新资源
- PLC按时间启停设备运转,设备到期停止设备运转 1,设备启停时间可以自行设定 2,可多次调用子程序,只需修改对应参数即可设定多段启停时间段 3,到时间后输入动态密码继续继续运行 4,配合上位机组态
- 关键词:需求响应 主从博弈 热电联产 综合能源系统 编程语言:matlab 主题:基于主从博弈的综合能源微网需求响应优化调度模型
- Average Curve:基于MATLAB Simulink的通过线性插值返回多条曲线的平均曲线 返回的平均曲线也具有唯一的和排序的横坐标
- 前端分析-2023071100789
- WindRose:基于MATLAB Simulink的方向强度直方图(风玫瑰图),还可以将图形中所表示的数据返回数据表中
- VIENNA-Rectifier:基于MATLAB Simulink的VIENNA(维也纳)整流器仿真模型 控制算法采用电压电流双环控制,电压外环采用PI控制器,电流内环采用bang bang滞环控
- ATV61 71变频器驱动板图纸,30-45Kw可参考通用,图清晰
- 手机组态软件 APP监控西门子200smart PLC C#全套源代码 1,C#开发上位机手机APP,自己写的程序可提供部分 2,通过VS2019开发安卓手机app 3,全套源代码,admin
- 滚动轴承故障诊断MATLAB程序:快速谱峭度、谱峭度+包络谱分析 可以很好的提取出滚动轴承故障特征
- c#工业自动化通信开发库,工业自动软件必备的基本程序 包括串口通信,TCP客户端,tcp服务器端,高并发物联网接收服务器端,udp通信,can总线通信,profinet,modbus tcp rtu
- opc ua客户端实例源码,带ef6+sqlite 代码有完整的注解,及包括所有的链接库和程序结构思维图 纯学习资料
- C# 高并发高性能socket源代码 包括tcp客户端和服务器端,udp客户端和服务器端 所有都包括socket流控制 此代码属于上层代码,主要应用于大批量物联网项目,mes系统及游戏服务器
- pmsm电阻电感磁链常数辨识源码 电阻,电感,磁链常数辨识 程序在ti dsp实现 在ti开源foc框架基础上开发 能够辨识电机电阻,电感,磁链常数 精度较高,能够满足foc控制需要
- BP神经网络电力负荷预测MATLAB程序 MATLAB完整程序代大量注释,只提供程序和数据,不负责 提供原始数据 3年负荷Excel表格,2年作为训练,1年作为测试 数据提供全年365天,每天
- 前端分析-2023071100789
- comsol 5.6固态电池仿真,有参考文献,本模型为二维模型
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈