照片

Cui


最后见:今天|2017 이후 활성

统计数据

All
  • Thankful Level 4
  • Knowledgeable Level 1
  • Introduction to MATLAB Master
  • Commenter
  • 5-Star Galaxy Level 4
  • Personal Best Downloads Level 3
  • 发起人
  • Community Group Solver
  • Solver
  • Github提交3级
  • 资源管理器
  • First Review

배지보기

内容提要

질문


如何将算法端口到嵌入式平台上?
SLAM算法非常经典且广泛,具有各种应用领域,但我很少看到如何部署SL ...

약 13시간 전 | 답변 수: 1 | 0

1

답변

질문


how to get the relative camera pose to another camera pose?
两个相机绝对姿势,Pose1(rotationMatrix1,translationvec1),pose2(rotationMatrix2,translationvec2),如何获得...

4일 전 | 답변 수: 1 | 0

1

답변

질문


为什么我的预期不是与旋转矩阵计算的点对应关系?
例如,首先,一个点P1(1,0,0)通过Y轴旋转PI/2角,然后获取点P2(0,0,-1),然后通过...旋转PI/2角。

9일|답변:1 |1

1

답변

질문


WYH旋转矩阵转换为Eular角度与原始Eular不同吗?
At the beginning,i use eul2rotm function to convert eular degree to rotation matrix,then use rotm2eul function convert to back ...

10일|답변:1 |0

1

답변

질문


Error in simulink simulation official example program?
当我尝试运行官方示例“使用虚幻引擎模拟开发视觉大满贯算法”时,我再次遇到一个错误...

12일 전 | 답변 수: 0 | 0

0

답변

제출됨


matlabcommentTemplate
易于使用的M文件评论模板!

약22 |다운로드:4 |

缩略图

질문


MATLAB本地帮助文档是否支持黑色主题?金宝app
As far as I can see from the latest matlab release notes, R2022a starts to support livescript background color specifying, but I...

약22 |답변:1 |0

1

답변

해결됨


短边的长度
计算右角三角形的短侧的长度,a斜长c,lengt的其他短侧...

약 2달 전

해결됨


Sum all integers from 1 to 2^n
x, y必须给定数量的总和integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

약 2달 전

해결됨


魔术很简单(对于初学者)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

약 2달 전

해결됨


制作一个随机的,不重复的向量。
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...

약 2달 전

해결됨


Roll the Dice!
*说明*返回两个在1到6之间的随机整数,以模拟滚动2骰子。*示例* [x1,x2] = ...

약 2달 전

해결됨


二进制字符串中的1次
在给定的二进制字符串中找到1s的数量。例子。如果输入字符串为“ 1100101”,则输出为4。如果输入stri ...

약 2달 전

해결됨


返回字符数组的第一个和最后一个字符
返回字符串的第一个和最后一个字符,将串联在一起。如果字符串中只有一个字符,则功能...

약 2달 전

해결됨


Create times-tables
一次或一次,我们都必须记住无聊的时间表。5次5是25. 5倍6是30. 12倍12次更多...

약 2달 전

해결됨


从向量获取索引
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to

약 2달 전

해결됨


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

약 2달 전

해결됨


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

약 2달 전

해결됨


交换第一列和最后一列
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

약 2달 전

해결됨


交换输入参数
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

약 2달 전

해결됨


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...

약 2달 전

해결됨


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

약 2달 전

해결됨


选择向量的其他元素
写一个函数,该函数返回传递的向量的所有其他元素。也就是说,它返回所有奇数元素,s ...

약 2달 전

해결됨


斜边的长度
给定长度A和B的短侧,计算右角三角形的斜边的长度C。<< https://i.imgu ...

약 2달 전

해결됨


Triangle Numbers
三角数是连续整数的总和。因此6是一个三角形的数字,因为6 = 1 + 2 + 3可以显示...

약 2달 전

해결됨


产生矢量1,2,2,3,3,3,4,4,4,44
生成一个矢量1,2,2,3,3,3,3,4,4,4,4,因此,如果n = 3,则返回[1 2 2 3 3 3],如果n = 5,则返回[1 22 ...

약 2달 전

해결됨


使矢量[1 2 3 4 5 6 7 8 9 10]
在MATLAB中,您可以通过将元素封闭在So:X = [1 2 3 4]逗号之类的方括号中来创建一个向量。

2달전

해결됨


Finding Perfect Squares
给定数字向量,如果其中一个是数字之一的平方,则返回true。否则返回false。例子...

2달전

해결됨


正方形的返回区
方形的侧面=输入= a区域=输出= b

2달전

해결됨


Maximum value in a matrix
在给定矩阵中找到最大值。例如,如果a = [1 2 3;4 7 8;0 9 1];然后答案是9。

2달전

더로드