照片

Adam


最后一个见面:1일전|2013 이후 활성

专业利益:Signal Processing, OOP, Matlab GUI programming, Machine Learning

专业利益:

统计数据

All
  • 高手
  • First Review
  • 复兴级别2
  • 36 Month Streak
  • Thankful Level 3
  • Knowledgeable Level 5
  • 第一个答案
  • Solver

배지보기

内容提要

보기기준

답변있음
迭代没有停止。你能帮忙谢谢吗?
Which iteration is not finishing? You have a nested for loop and two while loops in that code. I assume you mean one of the wh...

3달 전 | 0

질문


更改R2021B中编辑器中的代码格式行为?
有人知道这是否是缩进和格式化行为的默认格式行为的变化,还是我只是...

6달|답변:2 |2

2

답변

답변있음
Removing "head" entry from doubly linked list
除非我完全误解(考虑到我的评论中的最初混乱),您的课程正常。什么不好...

6달|1

|수락됨

답변있음
how to find the count of unique values of a column in a array?
DOC HistCounts应该为您提供数组中每个元素的数量,只要您正确地参数(如果您...)

6달|0

|수락됨

답변있음
如何创建具有已知索引编号的向量
result = vector( positions ); will give you this, if what you mean is you want the numbers from those positions of vector rathe...

7달 전 | 0

|수락됨

답변있음
what does k = 0:25.5:255 function means
doc colon It means create an array starting at 0, incrementing by 25.5 each time, with a maximum value of 255. Easiest way to ...

7달 전 | 0

|수락됨

답변있음
调整大小并总和一个矩阵
如果您有图像处理工具箱,则可以使用blockProc类似以下内容:array2 = blockProc(array1,[n n],...

1년 이상 전 | 2

|수락됨

답변있음
Whats the difference when using [ ] and : ?
key = [1 2 3 4 5 6 7 8 9 10]; res = reshape( key, 2, [] ); would give res = [ 1 3 5 7 9 2 4 6 8 10 ]; The [] indica...

1년 이상 전 | 1

답변있음
从变量获取矩阵的最接近值的行和列
如果您使用的是MATLAB的最新版本(扫描发行说明,我认为R2019A或以后为特定的语法o ...

약 2년 전 | 0

답변있음
How to round the decimal values?
ceil( 0.7954 * 1000 ) / 1000 It should also be noted though that many seemingly 'round' decimal numbers cannot be perfectly rep...

약 2년 전 | 0

답변있음
Problem with loop index
计算您要删除的所有行的索引,然后一口气删除它们,例如rowstodelete = [...

약 2년 전 | 1

답변있음
阵列索引n个间隔元素
a( 1:n:end )

약 2년 전 | 0

|수락됨

답변있음
如何以2.5的标准偏差从平均值中删除异常值?
查看Doc Filloutliers中的帮助,这应该有效:filleoutliers(a,''中心','平均','thresholdFactor',2.5)代替...

약 2년 전 | 1

|수락됨

답변있음
如何使子图接受像矩阵这样的位置?
DOC IND2SUB这将将线性索引转换为n维下标。例如[p(1),p(2)] = ind2sub([[3,3],2);

약 2년 전 | 1

|수락됨

답변있음
输入矢量FRA编辑文本在GUID GUI中
sscanf( str, '%d' ) or str2num( str ) would both work if the input is e.g. "1 2 3 4 5 6", although the first returns a column...

약 2년 전 | 0

|수락됨

답변있음
定义时间变化的功能
如果t

약 2년 전 | 0

답변있음
我有不同的结果
只需摆脱循环和矢量:probdg = 1-(1./t);dgt = -log(-log(probdg));可以在循环中完成,但这是末端o ...

약 2년 전 | 0

|수락됨

답변있음
在应用程序设计师中使用脚本有哪些选择?以及如何定义它?
您不必这样做,但是您应该想要,因为脚本不适合仅仅尝试一下。一旦你想...

약 2년 전 | 0

|수락됨

답변있음
如何在特定的轴上处理传奇?
传说是由图形的,而不是轴的父母,因此您会得到像这样的图形列表:>> get(gcf,'children')an ...

약 2년 전 | 0

|수락됨

답변있음
将两个或多个高斯组件组合成一个高斯混合物(GMDistribution)
gc = gmdistribution([[mux; muy],cat(3,sx,sy),[1; 1]);工作?

2년 이상 전 | 1

|수락됨

답변있음
Divide 3D矩阵(840,64,1536)除以1D矩阵(1536,1)
a ./ reshape(b,[1 1 1536]);

2년 이상 전 | 1

답변있음
如何从另一个新数组中提取一个数组中具有值0的行?
newArray( ~thisArray, : ) where thisArray is the one you show here.

2년 이상 전 | 1

|수락됨

답변있음
什么类型的数据(200 x 200 x 200)
这是一个数组。一个3D阵列是精确的,但只是一个数组。向量(由ISVECTOR(...)定义)是NX1或1XN数组A M ...

2년 이상 전 | 1

|수락됨

답변있음
" bsxfun(@rdivide..." Explain Use in Code
rgbh_e = bsxfun(@rdivide, rgbh_e, rgbh_e(4,:)); divides rgbh_e by by the 4th row of rgbh_e, on a per row basis - i.e. each elem...

2년 이상 전 | 0

답변있음
在哪个MATLAB版本中引入了RNG()?
https://uk.mathworks.com/help/matlab/release-notes.html?rntext=rng&startrelease=R2006a&endrelease=R2019b&groupby=release&sortby=...

2년 이상 전 | 1

|수락됨

답변있음
我的脚本怎么了?
2:4表示[2,3,4] a([2 4],[2 4])将提供您想要的东西。

2년 이상 전 | 1

|수락됨

답변있음
参数阻止语法未被识别
这仅在2019b中引入(您可以在“参数”的帮助页面的底部看到)。这是缺点之一...

2년 이상 전 | 1

|수락됨

답변있음
矩阵创建组合向量
m = [repmat(v1(:),[numel(v2),1]),repelem(v2(:),numel(v1))];

2년 이상 전 | 0

|수락됨

답변있음
Help with restricting input
validateattributes( number, { 'numeric' }, { 'scalar', '>=', 1, '<=', 100, 'integer' } ) You would have to put a message togeth...

2년 이상 전 | 0

답변있음
MATLABAnswers Wish-list #5 (and bug reports)
我意识到我这在古代愿望列表thread before. Can we not have some white space back between answers? Since t...

2년 이상 전 | 1

더로드