Community Profile

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