photo

Nikhil Negi


2018 年からアクティブ

Followers: 0   Following: 0

統計

All
  • Knowledgeable Level 1
  • Solver
  • First Answer

バッジを表示

Feeds

表示方法

回答済み
Create new matrix by date/time
Hello Samantha, If you didn't have any header in your file you could have directly used <https://www.mathworks.com/help/matla...

6年以上 前 | 0

回答済み
How can I create a multistep function with variable number of steps in simulink?
Hello Evan, You can use a selector block to select different elements of a vector. I've modified your example you can see it ...

6年以上 前 | 1

回答済み
Calculate current in RLC using Euler
Hello Joao, if you can define this equation in matlab the following way. syms i(t); ode=diff(i,t)==40*sin(60*t)-2...

6年以上 前 | 0

回答済み
Reformulate a Constrained Linear Least Square Problem
Hello Jason, let me see if i understand your problem coorectly you want to minimize the function J which is constrained by th...

6年以上 前 | 1

回答済み
How can I transform s domain to z domain at Matlab ?
Hello Berk, you can use 'c2d' function in matlab to convert a continous transfer function into a discrete transfer function. ...

6年以上 前 | 3

| 採用済み

回答済み
How to compare the content of 2 cells and get the content from cell1 column1?
Hello chocho, you can use temp=ismember(cell1,cell2(:,2)) ans=all(temp); if ans=1 then cell1 is a subset of cell2 column 2(...

6年以上 前 | 0

回答済み
How to access text files from many subfolders within a folder?
Hello Vishvendra, from what i can deduce from your description, you already have a list of folders you need. I will suggest ...

6年以上 前 | 0

| 採用済み

回答済み
Nonlinear optimization with differential equations in Constraint
i can think of two ways you can try both try replacing the dX/dt = g(X,u) with dX/dt = g(X,h(X)) so eventually you have dX/dt ...

6年以上 前 | 1