上一页 1 ··· 54 55 56 57 58 59 60 61 62 ··· 96 下一页
摘要: 对角矩阵的逆矩阵 对角矩阵(diagonal matrix)是一个主对角线之外的元素皆为0的矩阵,常写为diag(a1,a2,...,an) 。对角矩阵可以认为是矩阵中最简单的一种,值得一提的是:对角线上的元素可以为 0 或其他值,对角线上元素相等的对角矩阵称为数量矩阵;对角线上元素全为1的对角矩阵 阅读全文
posted @ 2020-10-27 14:39 西北逍遥 阅读(13164) 评论(1) 推荐(0)
摘要: matlab矩阵求逆矩阵 因为 所以该矩阵可逆,根据 ,其中 得到 计算矩阵A每个元素的代数余子式: 所以 可得: matlab计算如下: >> A1=[1 2 2;2 1 -2;2 -2 1] A1 = 1 2 2 2 1 -2 2 -2 1 >> >> >> A2=inv(A1) A2 = 0. 阅读全文
posted @ 2020-10-27 09:47 西北逍遥 阅读(4023) 评论(0) 推荐(0)
摘要: 当n=1时,显然成立。 假设当n=k时,结论成立,即 则当n=k+1时, = = = = matlab验证: >> D2=[cos(5),-sin(5);sin(5),cos(5)] D2 = 0.2837 0.9589 -0.9589 0.2837 >> >> >> D2*D2 ans = -0. 阅读全文
posted @ 2020-10-26 15:52 西北逍遥 阅读(148) 评论(0) 推荐(0)
摘要: matlab计算 >> D1=[1 1 0;0 1 1;0 0 1] D1 = 1 1 0 0 1 1 0 0 1 >> >> >> >> D1*D1 ans = 1 2 1 0 1 2 0 0 1 >> >> >> >> >> D1*D1*D1 ans = 1 3 3 0 1 3 0 0 1 >> 阅读全文
posted @ 2020-10-26 15:27 西北逍遥 阅读(185) 评论(0) 推荐(0)
摘要: java.net.Socket * Copyright (c) 1995, 2013, Oracle and/or its affiliates. All rights reserved. package java.net; import java.io.InputStream; import ja 阅读全文
posted @ 2020-10-25 19:01 西北逍遥 阅读(166) 评论(0) 推荐(0)
摘要: 对角矩阵(diagonal matrix)是一个主对角线之外的元素皆为0的矩阵,常写为diag(a1,a2,...,an) 。对角矩阵可以认为是矩阵中最简单的一种,值得一提的是:对角线上的元素可以为 0 或其他值,对角线上元素相等的对角矩阵称为数量矩阵;对角线上元素全为1的对角矩阵称为单位矩阵。对角 阅读全文
posted @ 2020-10-24 18:58 西北逍遥 阅读(7069) 评论(0) 推荐(0)
摘要: QList类是一个提供列表的模板类。 Header: #include <QList> qmake: QT += core Inherited By: QByteArrayList, QItemSelection, QQueue, and QStringList 函数: QList()QList(c 阅读全文
posted @ 2020-10-24 18:06 西北逍遥 阅读(446) 评论(0) 推荐(0)
摘要: matlab矩阵行最简形 >> D6=[3 2 3 4 7;2 6 4 2 2;4 1 7 3 5;9 1 1 4 8] D6 = 3 2 3 4 7 2 6 4 2 2 4 1 7 3 5 9 1 1 4 8 >> >> >> rref(D6) ans = 1.0000 0 0 0 0.0873 阅读全文
posted @ 2020-10-23 18:33 西北逍遥 阅读(1219) 评论(0) 推荐(0)
摘要: 范德蒙德(Vandermonde)行列式 例如: matlab计算: >> D3=[1 1 1 1;1 -1 3 -2;1 1 9 4;1 -1 27 -8] D3 = 1 1 1 1 1 -1 3 -2 1 1 9 4 1 -1 27 -8 >> >> >> >> >> det(D3) ans = 阅读全文
posted @ 2020-10-22 09:12 西北逍遥 阅读(9151) 评论(0) 推荐(0)
摘要: matlab计算行列式的值与加边后的值 >> >> D1=[2 2 4;3 5 2;4 1 3] D1 = 2 2 4 3 5 2 4 1 3 >> >> >> det(D1) ans = -44 >> >> >> >> D2=[1 1 1 1;0 2 2 4;0 3 5 2;0 4 1 3] D2 阅读全文
posted @ 2020-10-22 08:08 西北逍遥 阅读(114) 评论(0) 推荐(0)
摘要: 四阶行列式计算 阅读全文
posted @ 2020-10-21 08:33 西北逍遥 阅读(888) 评论(0) 推荐(0)
摘要: matlab行列式的余子式、代数余子式 四阶行列式: 元素 的余子式: 元素的代数余子式: >> a3 a3 = 6 2 3 1 1 2 1 5 5 2 3 1 4 1 2 1 >> >> >> a6=a3 a6 = 6 2 3 1 1 2 1 5 5 2 3 1 4 1 2 1 >> >> >> 阅读全文
posted @ 2020-10-21 08:05 西北逍遥 阅读(2624) 评论(0) 推荐(0)
摘要: 行列式转置,值不变 >> a3=[6 2 3 1;1 2 1 5;5 2 3 1;4 1 2 1] a3 = 6 2 3 1 1 2 1 5 5 2 3 1 4 1 2 1 >> >> >> >> det(a3) ans = 6.0000 >> >> >> >> >> a3.' ans = 6 1 阅读全文
posted @ 2020-10-20 19:59 西北逍遥 阅读(1123) 评论(0) 推荐(0)
摘要: 基站配置i西南西 <?xml version="1.0" encoding="UTF-8"?> <YG_RTLS> <Anchor_list> <Anchor z="0" id="1" MA_ID="" y="1789" x="50" ant_dly="" type="2"/> <Anchor z= 阅读全文
posted @ 2020-10-20 11:00 西北逍遥 阅读(153) 评论(0) 推荐(0)
摘要: matlab计算行列式的值 >> a1=[6 2;4 3] a1 = 6 2 4 3 >> >> det(a1) ans = 10 >> >> a2=[6 2 3;1 3 4;5 7 5] a2 = 6 2 3 1 3 4 5 7 5 >> >> >> det(a2) ans = -72.0000 阅读全文
posted @ 2020-10-20 08:49 西北逍遥 阅读(2091) 评论(0) 推荐(0)
摘要: matlab绘制一个点、 scatter3(19,18,16,80,[0.8500 0.3250 0.0980],'filled'); 阅读全文
posted @ 2020-10-19 13:06 西北逍遥 阅读(2839) 评论(0) 推荐(0)
摘要: Ubuntu install of ROS Melodic 参考:http://wiki.ros.org/melodic/Installation/Ubuntu 阅读全文
posted @ 2020-10-18 21:39 西北逍遥 阅读(120) 评论(0) 推荐(0)
摘要: matlab绘制树 阅读全文
posted @ 2020-10-18 09:12 西北逍遥 阅读(491) 评论(0) 推荐(0)
摘要: matlab scatter3函数 Syntax scatter3(X,Y,Z) scatter3(X,Y,Z,S) scatter3(X,Y,Z,S,C) scatter3(___,'filled') scatter3(___,markertype) scatter3(___,Name,Value 阅读全文
posted @ 2020-10-17 15:44 西北逍遥 阅读(3747) 评论(0) 推荐(0)
摘要: matlab rrt star学习 function problem = rrt_star_fn(map, max_iter, max_nodes, is_benchmark, rand_seed, variant) %RRT_STAR_FN -- RRT*FN is sampling-based 阅读全文
posted @ 2020-10-17 15:02 西北逍遥 阅读(761) 评论(0) 推荐(0)
摘要: matlab rrt算法学习 rrt.m function problem = rrt(map, max_iter, is_benchmark, rand_seed, variant) %RRT -- Rapidly-Exploring Random Tree is sampling-based a 阅读全文
posted @ 2020-10-17 14:51 西北逍遥 阅读(602) 评论(0) 推荐(0)
摘要: SimpleDateFormat.java package java.text; import java.io.IOException; import java.io.InvalidObjectException; import java.io.ObjectInputStream; import j 阅读全文
posted @ 2020-10-16 20:00 西北逍遥 阅读(101) 评论(0) 推荐(0)
摘要: 多个QDockWidget用程序控制自动切换 qDockWidgetParam->setVisible(true); qDockWidgetParam->raise(); 阅读全文
posted @ 2020-10-15 20:27 西北逍遥 阅读(282) 评论(0) 推荐(0)
摘要: 基于IFC数据的施工吊装模拟 四年了,四年了,四年了,我的青春!!!!!!!!!!!!!!!!!!!!! 阅读全文
posted @ 2020-10-14 19:42 西北逍遥 阅读(238) 评论(0) 推荐(0)
摘要: mysql各种类型的字段 /* Navicat MySQL Data Transfer Source Server : MySQL_localhost_2020 Source Server Version : 50717 Source Host : localhost:3306 Source Dat 阅读全文
posted @ 2020-10-14 09:22 西北逍遥 阅读(261) 评论(0) 推荐(0)
摘要: 查询的条件控件 //检索字段的返回值类型 QHBoxLayout* horizontalLayout_7 = new QHBoxLayout(); horizontalLayout_7->setSpacing(6); horizontalLayout_7->setObjectName(QString 阅读全文
posted @ 2020-10-13 18:28 西北逍遥 阅读(125) 评论(0) 推荐(0)
摘要: 1.Windows是由微软在1983年11月宣布,并在两年后(1985年11月)发行的。 2.Windows版本2.0是在1987.11正式在市场上推出的。该版本对使用者界面做了一些改进。2.0版本还增强了键盘和鼠标界面,特别是加入了功能表和对话框。 3.Windows3.0是在1990年5月22日 阅读全文
posted @ 2020-10-12 09:28 西北逍遥 阅读(2403) 评论(0) 推荐(0)
摘要: windows98无法联网时浏览器提示信息页面 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <style>a:link {font:9pt/14pt 宋体, MS Song; color:red} a:v 阅读全文
posted @ 2020-10-12 08:42 西北逍遥 阅读(324) 评论(0) 推荐(0)
摘要: C++ STL函数对象 cfunctionobject2020101101.cpp //cfunctionobject2020101101.cpp #include <iostream> #include <list> #include <algorithm> #include <iterator> 阅读全文
posted @ 2020-10-11 20:56 西北逍遥 阅读(178) 评论(0) 推荐(0)
摘要: 安装win98,一直报下面的错误,哪位大神遇到过此类问题? There is not enough free conventional memory to check a drive. You may need to remark(REM) some device drivers from your 阅读全文
posted @ 2020-10-10 18:43 西北逍遥 阅读(379) 评论(0) 推荐(0)
上一页 1 ··· 54 55 56 57 58 59 60 61 62 ··· 96 下一页