照片

the cyclist


Alden Scientific

最后见:今天|2011以来アクティブ

奥尔登科学的建模和统计负责人。痴迷的跑步者。专业利益:预测建模,统计。(我不通过作者页面回复电子邮件,但是如果您向我发送了一个链接,通常会查看一个问题。)

编程语言:
Python, R, MATLAB, SQL
Spoken Languages:
English

统计数据

All
  • 寻宝参与者
  • 清道夫完成者
  • 掌握
  • Thankful Level 5
  • 可爱
  • Famous
  • First Review
  • 首先提交
  • 36 Month Streak
  • 复兴级别3
  • Knowledgeable Level 5
  • 第一个答案

バッジを表示

Content Feed

表示方法

回答済み
Unable to perform assignment because the size of the left side is 1-by-1
My best guess as to the problem is that in this expression ones(1,k+i)-K(k+i) you don't really intend to add a vector of ones ...

5前|1

回答済み
设置一个共同的Xaxis,以使行= 1和列= 2设置一个常见的Xaxis
You may find the linkaxes command useful. You can also share properties (e.g. titles, xlabels) in a tiledlayout.

5前|0

回答済み
what is the equivalent of 'improfile' in octave?
This Octave wiki page suggests that the improfile function is missing from Octave.

9日|0

|采用済み

回答済み
如何删除字符串数组中间的空格?
Here is one way: str=' 123 456 '; str(str==' ') = [] This method relies on the fact that the white space is a space cha...

11日 前 | 1

回答済み
Curve smoothing / fitting
您的意思是想要一条流畅的线条吗?您可以安装一个样条:%固定的种子用于可重复性rn ...

11日 前 | 0

回答済み
Want to be able to call python 3.9 from MATLAB 2022a
我不在Windows计算机上,但我很有信心您想下载并运行您列出的最后一个,即64位窗口...

11日 前 | 0

|采用済み

回答済み
计算向量中的“聚合”峰的数量?
I am absolutely positively NOT an expert in this, but I think what might be helpful here is putting your signal through a low-pa...

13日|1

回答済み
How to increase the distance between labels on the matrix axes
When you say that making the font size smaller "didn't work", can you be more specific? Do you mean that even with the smallest ...

13日|0

回答済み
我需要什么样的编码来创建一个可以识别我说的单词并向我重复同样的单词的程序?
查看有关如何在MATLAB中录制和播放音频的文档。仅供参考,我花了几秒钟才到达Google T ...

13日|0

回答済み
please explain this code
我在这里运行了您的代码。您可以看到它创建的图。这就是代码的作用。它定义了一些数据,进行了一些计算...

13日|1

回答済み
Replicating one dimension of a 3d matrix
如果m是您的数组,则输出= repmat(m,[10,1,1]);

15日|1

|采用済み

回答済み
Matlab does plot datetime data (only hours) on wrong day
The most fundamental fix to your issue is to explicitly use the modern datetime format for your times. Then, downstream function...

19日|0

回答済み
如何将3乘3矩阵分为行,然后分离地将行分开地保存在数组中
ra = NewRange(1,:); rb = NewRange(2,:); rc = NewRange(3,:); Be aware that you may not actually need to do this separation, be...

20日|0

回答済み
predictorImportance changes between releases
Are the ML model results themselves identical? Off the top of my head, I don't know enough about the algorithm and possible cha...

21日 前 | 0

回答済み
How to add a line break in categorical array?
这是一种方法:x =分类({sprintf('第一个跨季风\\ newline(3月 - 四月)'),... Sprintf('South ... South ...

22日 前 | 1

|采用済み

回答済み
using eval with save function
从文本和数字的组合中构造所需的字符串可能很棘手。我会在这里推荐几件事。...

26日|1

|采用済み

回答済み
从数组的单个元素中添加值
您的榜样使我感到困惑,部分原因是我认为您犯了一些粗心的数学错误。但是,我可以处理这个...

26日|0

回答済み
删除频繁的值withou排序
You can still use unique: x = [3 4 3 5 1 0 4 2]; x = unique(x,"stable")

26日|1

|采用済み

回答済み
在特殊人物中显示统计数据
One approach would be find a plot (or plots) in the MATLAB Plot Gallery that look similar to what you want, download that code, ...

27日 前 | 0

回答済み
run matlab on cloud platform
Yes, there are cloud platform options for running MATLAB. I suggest taking a look at this documentation to get started. (FYI, t...

29日|0

|采用済み

回答済み
如何根据现有数组中的单个值设置参数?我应该使用循环还是其他?
My best guess here is that L is a vector, and you are expecting the if-else logic to work on the entire vector simultaneously. T...

約1ヶ月 前 | 0

回答済み
此代码怎么了?
除了@DPB提到的问题外,您的代码中还存在简单的语法错误。我对您的最佳猜测...

約1ヶ月 前 | 0

回答済み
运行部分不在2022a上工作
Take a look at my question and answer here. There was a known bug in R2021b (although not exactly what you describe), but I am ...

約1ヶ月 前 | 0

回答済み
如何绘制这样的策划?
绘图命令的文档中有一些与此相似的示例,例如:x = 0:pi/10:2*pi;Y1 ...

約1ヶ月 前 | 0

|采用済み

回答済み
My code won't run, error message :Unrecognized function or variable 'ss'. Error in Q4_109 (line 19) Sys=ss(A,B,C,D);
如您所见,我能够在这里运行您的代码。我希望您没有控制系统工具中的SS函数...

約1ヶ月 前 | 1

回答済み
DateTime无法识别某些单元格
您的语法两个次要但重要的更改:dateTime(data.timeofday,'inputformat','hh:mm:ss.sss')注意我使用了“输入...

約1ヶ月 前 | 2

回答済み
我想创建一个2 DIM矩阵,该矩阵创建1000行VS 1000列,如果质数出现在单元格中的输出1,如果不是Prime Output 0
我认为这做了您想要的。我在10x10阵列中使用了100个数字来说明。只需将n更改为1000。n = 10;Prime_matri ...

約1ヶ月 前 | 0

|采用済み

回答済み
仅替换y轴的值
Does this do what you mean? rng("default") % Data to plot x = 1:10; y = rand(1,10); % 11 arbitrary numeric labels for y...

約1ヶ月 前 | 0

|采用済み

回答済み
将X Y Z数据(1D)转换为MXN矩阵,没有Z矩阵中的NAN值?
如果您使用的是Interp3(或相关函数),则可以自动将外推值设置为NAN,对于某些插值me ...

約1ヶ月 前 | 0

回答済み
如何迭代直到某个点满足一定条件?
您需要将条件编码为一段时间循环。(我不完全理解这种情况,所以我不能比...更具体。

約1ヶ月 前 | 0

もっと読み込む