社区资料

照片

Raj


上次见:1年前|自2019年以来活跃

统计数据

All
  • Pro
  • First Review
  • 6个月连胜
  • Knowledgeable Level 4
  • Thankful Level 1
  • 复兴级别2
  • Solver
  • 第一个答案

View badges

内容提要

View by

回答
How to change the reference ?
我认为这是不对的:ref = 8 in [0.200] ref = 5 in [200,400] ref = 12 in [400,600]在...

2 years ago | 0

|accepted

回答
编写一个程序,该程序可以计算腿A和B的所有(!)组合的斜边C的长度,然后使用for for loop!
You already know 'a' and 'b' from your problem statement. Just declare them as vectors directly. No need to enter the values one...

2 years ago | 0

回答
matlab account got temporary disabled
也许这会有所帮助:https://www.tatmou.com/matlabcentral/answers/429927-what what what what do-i-i-do-if-if-if-if-eccessed-the-limit-for-fail-failed-lo ...

2 years ago | 0

回答
Pre allocation do not work ...
问题is not clear. What exactly are you trying to do here?The pre allocation works fine. You can check it by putting breakpo...

2 years ago | 0

|accepted

回答
repeat elements ('a','b') where 'a' has to repeat 157 times and 'b' has to repeat 173 times, sequentially?
What is the exact issue here? Your 'tags' themselves are answers to your question. Use repelem and repmat to get what you want d...

2 years ago | 0

|accepted

回答
分子1单位的向量小于分母
格式大鼠a =输入('输入元素数:')%enter 10 for ii = 1的示例:aut_vector(ii)=(ii-1)/ii;结束O ...

2 years ago | 0

回答
延迟步骤/冲动响应
您具有系统模型和输入信号方程。您可以仅生成输入信号,并获取系统响应...

2 years ago | 0

回答
频率域信号进入时域信号
你的问题基本上是将frequency domain data to time domain. Use 'ifft' command. See details here: https://...

2 years ago | 0

回答
Workspace data is not reflected in the model
Ok to summarize, you have a time series data in your workspace which you want to import to Simulink at appropriate time stamps. ...

2 years ago | 0

回答
How Simulink and Simscape model a particular system differently.
Of course you can make a Simulink model (mathematical model) of DC motor. Your question itself clears the air about 'how' Simuli...

2 years ago | 0

回答
使用BodePlot时,哪个状态被绘制在自由系统的多度
您可以分享您的系统吗?MIMO状态空间系统的“ Bode”或“ BodePlot”将为您提供Bode图(幅度和频率re ...

2 years ago | 0

|accepted

回答
另一行中的所有行求和循环的求和
You are almost there. Put the whole thing in another loop that runs accross all the rows and store F_HL for each row like this: ...

2 years ago | 0

回答
时间序列数据到频域
似乎很简单。使用此引用:https://www.tatmou.com/help/signal/ref/seppectrogram.html

2 years ago | 0

回答
Finding X value for a corresponding Y value from contents of a table
您可以使用'Interp1'命令。例如,在第三列的情况下,您可以使用:Interp1(a(::4),a(::,1),1.5),该列给出Ans ...

2 years ago | 0

|accepted

回答
当我模拟状态空间模型时,如何选择所需的最终状态?
"How would I tell my system to, for example, change the pitch angle 10 degrees and then plot the results of this?" It's a quite...

2 years ago | 0

回答
使用初始值和计算值。
使用simuli金宝appnk延迟块点击最后一个块“更新角速度”的输出,并将其作为输入到fi ...

2 years ago | 1

|accepted

回答
Upcoming Exam Dates for MATLAB Associate certification in India?
See here: //www.tatmou.com/training-schedule/search?class_format=ILC&country_facet=IN

2 years ago | 0

回答
我们如何找到具有X或Y等变量的矩阵的eigen值和特征向量?
You need to have 'Symbolic Math toolbox' to do this. Then you can calculate the Eigen values & Eigen vectors in terms of the var...

2 years ago | 1

回答
如何将已经分解的多项式输入到Bode函数中?
Z=[-1]; P=[0,-0.5,-2,-3]; system=zpk(Z,P,1); bode(system)

2 years ago | 0

回答
Hi. I want to automate a process which consists of 3 steps. 1. Read the data from excel file and extract the necessary data alone. 2. Run the data and output plots. 3. Store the results (workspace) in a specified folder in my computer.
“我想将Master Excel文件称为MATLAB,在每个表中读取/运行数据,然后将每个表的工作区保存在SPE中...

2 years ago | 0

|accepted

回答
Find position of max value in a graph
只需在代码末尾添加它:[y,i] = max(xphi);x_max = phi(i)y_max = y还是您要在图上进行最大点标记?...

2 years ago | 0

回答
for循环的向量输出
TMP =[12, 3, 36]; PGRED=zeros(size(TMP)); for ii=1:length(TMP) if TMP(ii) < 9 PGRED(ii)=0; elseif ...

2 years ago | 1

|accepted

回答
Plots - Two Y-Axis with Different Units
Since you have not shared the data, it is not possible to give exact solution to your problem but if you are looking for plottin...

2 years ago | 0

回答
divide array to multiple varible of array
为了存储目的,您可以使用类似的结构:mystructure = struct('name',{{'a'''''b''c'}},'value',...

2 years ago | 0

|accepted

回答
如何为给定的X和图存储多个任意长度的Y数据?
x = [1 2 3 4 5]';y = {[1 2 3] [1] [] [1 2 10 4] [1 5 2 0 3]}';对于II = 1:numel(x)scatter((repelem(x(ii),numel(cell2mat(y(ii))...

2 years ago | 0

|accepted

回答
绘制多变量函数的图
“该代码仅采用最后值,即Y1和Y2 = 1” - 不,它不仅仅采用最后一个值。y1 an ...的for循环

2 years ago | 0

回答
Using nested loops to calculate Bernoulli numbers
B=zeros(1,11); % Create an empty array to store the Bernoulli numbers for m=0:10 % Number of Bernoulli numbers required temp2=...

2 years ago | 0

|accepted

回答
How to create a 2x2 matrix?
h1=rand(2,500)+i*rand(2,500) % Your first matrix h2=rand(2,500)+i*rand(2,500) % Second matrix M=[{h1} {h2};{h2} {h1}]

2 years ago | 1

回答
请帮助:如何做一个时间步骤?
The easiest way here would be: 1) Compute u_1 and u2 as you have done already. 2) Just take the last value of u_1 and append i...

2 years ago | 0

|accepted

回答
Matrix compare row to column
好的,让我们尝试将其分解在这里:1)我必须创建一个100 x 100矩阵创建一个所有零矩阵,例如:a = zeros(100,...

2 years ago | 0

装载更多