Community Profile

photo

Shota Kato


Last seen: 5 mois il y a Actif depuis 2018

Followers: 0   Following: 0

Contact

2019.4~ Ph.D student

Statistiques

All
  • Knowledgeable Level 1
  • 3 Month Streak
  • Solver
  • First Answer
  • Revival Level 1

Afficher les badges

Feeds

Afficher par

A répondu
combvecによるメモリ不足および積分計算に関しまして
以下の2点を確認させてください. 台形の面積は解析的な解が存在するので,piecewise関数やint関数を用いることなく陽に答えを書くことができそうですが,そのようにしない回答が必要,ということでしょうか?そうでないなら,問題は簡単になります. 添付...

plus de 3 ans il y a | 0

A répondu
[大至急お願い致します] for文の入れ子に関しまして
Neural Network Toolboxがあるならcomvbec関数,そうでなければMATLAB Centralにあるallcomb関数を用いることで,複数組のベクトルの値からすべての組み合わせを取得することができます. (参考:https://jp...

plus de 3 ans il y a | 0

| A accepté

A résolu


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

plus de 3 ans il y a

A résolu


Read a column of numbers and interpolate missing data
Given an input cell array of strings s, pick out the second column and turn it into a row vector of data. Missing data will be i...

environ 4 ans il y a

A résolu


Add two numbers
Given a and b, return the sum a+b in c.

environ 4 ans il y a

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

environ 4 ans il y a

Question


How to determine initial condition of PID control?
I want to do a PID control simulation considering the past input and output. I know the initial condition of the PID controller...

environ 4 ans il y a | 1 réponse | 0

0

réponse

A répondu
How to Import RegressionGP model to Simulink
Hi, I had the same problem. You can solve the problem by using "saveCompactModel" and "loadCompactModel". Given the trained mo...

plus de 4 ans il y a | 1

| A accepté

A répondu
Dividing the values of a vector
q can be calculated as follows q = p(1,:) ./ p(2,:) or q(:,k) = p(1,k) / p(2,k) Then, you can plot q against r.

plus de 4 ans il y a | 0

A répondu
(13.1^2-b^2 15.2^2 30^2)/(2*13.1*15.2)=1.461
syms b fun = (13.1^2 - b^2 * 15.2^2 * 30^2 ) / (2*13.1*15.2)==1.461; ans = solve(fun) ans = -(25638665^(1/2)*1i)/114000 ...

plus de 4 ans il y a | 0

A répondu
左辺のサイズが 1x1 で右辺のサイズが 0x1 であるため、代入を実行できません。
右辺のサイズが 0x1 であるというエラーメッセージの意味は,vpasolveによって解が求まっていない,ということです. vpasolveのドキュメント (https://jp.mathworks.com/help/symbolic/vpasolve....

plus de 4 ans il y a | 3

A répondu
Simulink failed assertion: object[id] != NULL
I had the same problem but could solve the problem by reworking "MATLAB Funciton" used in a Simulink model. I checked the "MA...

plus de 5 ans il y a | 1