社区资料

照片

Sulaymon Eshkabilov


Last seen: 3 days ago|自2019年以来活跃

研究兴趣:振动,最佳控制,系统建模和仿真,机电一体化...编码

统计数据

All
  • MATLAB迷你黑客参与者
  • Matlab Central寻宝终结者
  • Guiding Light
  • 复兴级别4
  • Commenter
  • 速度恶魔
  • 画字母
  • Thankful Level 5
  • 领导者
  • 杯挑战大师
  • Knowledgeable Level 5
  • 12 Month Streak

View badges

内容提要

View by

回答
How to delete a Matrix in a 3D Matrix?
您正在尝试更改无法以这种方式实现的矩阵的大小。如果您需要找到并用...

19天前|0

回答
How do I make a figure legend multiple lines?
这是一个更好的解决方案,更易于实现:绘图(sin(1:.1:10),'r','displayName','cesine'),保持情节(cos(1 ...)

19天前|1

回答
1D泊松方程的有限元
您可以使用MATLAB的PDE工具箱FCN PDEPE()。如何使用它:doc pdepe,您还可以在此文档中找到一些很好的帮助。

1month ago | 0

回答
Image analysis for Signal processing help
Using the Discrete Cosine Transform is quite straightforward. You'd need to employ dctmtx() fcn. Help documentation: doc dct...

1month ago | 0

回答
Image analysis for Signal processing help
使用Imcrop()如何使用此功能:>> DOC IMCROP

1month ago | 0

|accepted

回答
执行fminsearch以找到模型中变量的最佳价值
One pranthesis was missing: ... for ii = 1:numel(Imeas) Itheory = @(Ro)(Imeas(ii)*exp(-Ro*-2*bet_a*k*2*Ro*(1-(y(ii)/Ro)^2))...

1month ago | 0

回答
How do you obtain the equation of the Adaptation mechanism adjusts in the MRAC PID block?
在此处找到:SIMSCAPE / Electrical / Control / General Control,如果您的MATLAB / SIMULINK软件包具有S万博1manbetxIMSCAPE工具箱。哟...

1month ago | 0

回答
执行fminsearch以找到模型中变量的最佳价值
Note the following two points in your code that must be identical and input variable names must match as defined above: Itheory...

1month ago | 0

|accepted

回答
键盘快捷键未正确映射到不同的语言键盘
使用首选项选项调整键bor捷捷径,例如:>>首选项如下:首选项 - >键盘 - >快捷方式...

1month ago | 0

回答
How to detect rotation in a trajectory?
One way of detecting the region of values is using logical indexing, e.g.: t = ... x = ... y = ... % Way 1 Ind = t>=0 &...

1month ago | 1

回答
执行fminsearch以找到模型中变量的最佳价值
There are a couple potential of errs in your code. (1) Ifunc fcn has to have two more input variables, viz. bet_a, k and thus, w...

1month ago | 0

回答
给定微分方程的拉普拉斯变换
请注意,如果您的系统具有“零” IC,而不是激发力;因此,您的系统解决方案(响应)将为零。如果你...

1month ago | 0

回答
与Simul万博1manbetxink相关
请参阅所附的屏幕截图如何执行搜索。

1month ago | 0

回答
Import .csv files in my folder directory.
probably, you'd better use a loop, e.g.: for ii=1:Number_csv % Number of *.csv files D{ii}=readmatrix(strcat(num2str(i...

1month ago | 0

|accepted

回答
给定微分方程的拉普拉斯变换
Laplace transform does not work at t ~0 initial conditions and thus, here dsolve() might be a better option, e.g.: syms y(t) D...

1month ago | 0

回答
How to Identify Range of Frequency which is Noise from FFT Freq Domain graph
您的过滤信号并不完全无噪声,因为它从脚本中显示出来,并且获得的FFT并不完全正确。[X,...

1month ago | 0

回答
MATLABgives the integer value of subtraction when the difference between numbers is large.
相应地指定浮力点格式,例如:a = [1; 1; 1; 1; 1];b = [10^23; 10^23; 10^23; 10^23];c = a-b fprintf(“%1999.0f \ n”,c)...

1month ago | 0

回答
how to pull correct h into h(i)
嗨,您的意思是A(2,2)具有H = 6.5929,A(3,3)的H = 6.0625,对吗?如果是这样,您可以通过调整inde来调整循环...

1month ago | 0

|accepted

回答
Integration containing multiple variable and plotting
Use integral3: //www.tianjin-qmedu.com/help/matlab/ref/integral3.html

1month ago | 0

回答
无法在Mac上添加路径
也许在Mac中,这种方式有效:AddPath(genPath('/users/maherheal/applications/cplex_studio128/cplex/matlab')))))

2个月前|0

回答
Protect Matlab/Simulink Files
One option is creating p-code of m-files, e.g.: >> pcode MYfile.m

2个月前|0

回答
Projectile Motion With Air Resistance Vs. Free-Falling with Air Resistance
You can add the free fall plot using simply, e.g.: ... xfall=x(1)*ones(size(x)); yfall = linspace(0, h, numel(y)); plot(xfal...

2个月前|1

|accepted

回答
why looping just save the last value of iteration
Because the indexes are missing, e.g.: data_diff(??) = out.Vo.signals.values-v_data; lse(??) = lse(??) + (data_diff'*data_diff...

2个月前|0

回答
Startup view for a Simulink model.
请参阅附件示例。

2个月前|0

回答
Startup view for a Simulink model.
嗨,在模型浏览器的左上角点击最高级别的系统模型,然后保存模型。那会给...

2个月前|0

|accepted

回答
for loop forward modelling
您可以以这种方式开始工作:... rho = 2600;%注意密度不能为负。ii = 1:2 f ...

2个月前|0

回答
使用符号变量的3D绘图
If it is a symbolic expression, use fmesh(). Here is a good doc how to employ it: //www.tianjin-qmedu.com/help/matlab/ref/fmes...

2个月前|0

回答
脚本太长了
这是您的代码的简化版本:clc格式长n = 1e4;x1 =零(n,1);x2 = x1;x3 = x1;x4 = x1;错误= x1;...

2个月前|1

|accepted

回答
如何填充两条曲线之间的区域?
这是如何完成此任务的几个好例子:https://www.tianjin-qmedu.com/matlabcentral/answers/180829-hash-aade-area-...

3 months ago | 0

回答
重新排列给定的阵列
A = [1 2 3 4 5 6 7 8 9 10 11 12]; B = sort(A(:), 'descend'); C= reshape(B, 3,4)...

3 months ago | 1

装载更多