社区资料

photo

Joel Lynch


Last seen: Today|Active since 2021

Statistics

全部
  • 感恩2级
  • 知识渊博的级别3
  • MATLABMini Hack Participant
  • 个人最佳下载级别2
  • 感恩1级
  • 知识渊博的级别2
  • First Answer
  • 首次审查
  • GitHub Submissions Level 2
  • Explorer
  • First Submission

查看徽章

Content Feed

Answered
Fmincon/Multistart不会在输出FCN中调试/显示错误
我发现必须在Multistart而不是Fmincon中添加“ outputfcn”问题。这也意味着对CA ...使用不同的语法...

4个月前|0

|公认

Question


Fmincon/Multistart不会在输出FCN中调试/显示错误
If "x=b" is uncommented, the code still runs and does not break on error or display the line number. This means debugging a mor...

4个月前|1答案|0

1

answer

Question


有没有更好的方法来初始化原始对象中的datatiptemplate字段?
问题:在Plot()中创建图表对象()在结果句柄中初始化Datatiptemplate字段。p =图(0,0);P ...

8 months ago | 1 answer | 0

1

answer

渠道


MyChannel
test

9 months ago

Question


为什么逻辑索引隐含重塑?有解决方法吗?
我已经遇到过几次,这总是困扰我。例如,我想总结矩阵A的每一行,以备值...

12个月前|1答案|0

1

answer

Question


When using "Pause on Warning/Error," is there a way to avoid breaking into built-in functions?
For example, a bad set of data when calling "fit" breaks into a function called "curvefit.attention/Warning/throw": Warning: Eq...

1年前|1答案|0

1

answer

Answered
长度变化的向量的框图
直接的错误是年度范围字符串“ 1931-1960”周围的符号不是撇号,因此Matlab不知道...

1年前| 0

|公认

Answered
Mesh Grid of a 3d array
So this may be due to confusion about how mesh() works. Mesh produces a 2D surface in a 3D volume, with the Z-axis being the val...

1年前| 0

|公认

Answered
Run "if" logic on a row
The trick is to recognize that you can use & / | (and/or) to chain multiple logical operations together. In this case, you can g...

1年前| 0

|公认

Answered
Solve the generalized form of the Poisson equation
I don't get an error when running your code with MATLAB version 2019b, but the bigger problem you have is that your method will ...

1年前| 0

|公认

Answered
How to plot a matrix within a matrix?
In terms of organizing the data, the simplest approach is to create two matricies for stiffness and deflection that have two dim...

1年前|1

|公认

Submitted


ternary_plots
MATLABpackage for creating ternary plots. Based loosely on 7210-ternary-plots by Ulrich Theune.

1年前|45下载|

Thumbnail

Answered
set xticks by calculation but also force 0 to be displayed
set(gca,'xtick’,array_of_values)

1年前| 0

Answered
确定功能是否唯一的功能以及它具有多少解决方案。万博 尤文图斯
".p" files are purposefully obfuscated, so you cannot copy the code, suggesting your instructor does not want you to use someone...

1年前| 0

|公认

Answered
Why do I get 'Out of Memory' error?
Out of memory is exactly what it sounds like: your program is trying to hold more data on system memory than is available. The c...

1年前|1

|公认

Answered
我需要帮助创建有限的对数图
假设您打算拥有,则t = linspace(0,2*pi);x = exp(-t);%如果恒定,则x(1:numel(t))= exp(-1);y = t;PLO ...

1年前| 0

Answered
如何在X和时间数据集中找到零交叉?
idx = find(f(2:end)。*f(1:end-1)<0)将返回左手指示交叉点。要获得确切的X值...

1年前| 0

Answered
如何为给定但未知的阵列形成两个柱数阵列?
You can make a row vector of any N dimensional matrix by linearizing, for example A( 1:numel(A), 1 ) = A(:); .Thus, you can a...

1年前| 0

Answered
基于第三个数据集的条件散点图
Assuming columns with 1's will only have 1's, and columns with 2's and 3's will never have 1's, then it is as simple as taking t...

1年前| 0

|公认

Answered
如何把表1 1行吗nd compute it against every row of table 2 and do this for each row in table 1
Assuming the data is read into two variables, d1(1:N1,1:3) and d2(1:N2,1:3) by d1 = xlsread('Matlab Help.xlsx','Random','B2:D31...

1年前| 0

|公认

Answered
Using trapz just for positive areas
You need to use more fine-grid X data in polyval to get test points at y=0. xA_fine = linspace(xA(1),xA(end),100); fA_fine = ...

1年前|1

Answered
Continue after .exe finishes
您可以使用System()函数传递命令(作为字符串),而无需“!”象征。如果使用Unix OS,则可以管道(使用...

1年前| 0

|公认

Answered
2015年MATLAB版本中堆叠的情节X轴更改
bar(y(:,1),y(:,2:end))

1年前| 0

|公认

Answered
Find the input values of a function within an output range.
如果您无法通过代数求解(没有封闭形式解决方案),则FZERO是最好的选择。这样的东西:%示例y范围...

1年前| 0

|公认

Answered
how to fix this error 'Index in position 2 exceeds array bounds.'?
The proximate reason for the error is that "Popbest" is empty, and so acessing the first column by Popbest(:,1) throws an error....

1年前| 0

|公认

Answered
How to show two axis on a plot only where i want them
您可以用Yyaxis获取左右轴的手柄。Yyaxis左;%设置当前的y轴左左_ax = gca;...

1年前| 0

|公认

Answered
如何绘制双矩阵的最大值?
Max()具有可选的第三个参数,该参数确定沿索引的最大值。因此,对于10x20矩阵A,A_MAX ...

1年前|1

|公认

Answered
热扩散问题。为什么当我试图更改“ nx”值的情况下,即13以上的行时,为什么我的程序显示出错误?时间或时间段有什么问题吗?
看来您没有在模板中包含DT值。在设定时间时,您还需要注意稳定性...

1年前|1

|公认

Submitted


MAT-OP-EX
Matrix Operator Extraction Toolkit - Tools to obtain the matrix form of common MATLAB linear operations (e.g. trapz, interp) for...

1年前|1 download |

Thumbnail