Community Profile

photo

Shota Kato


Last seen: 5 meses hace Con actividad desde 2018

Followers: 0   Following: 0

Contacto

2019.4~ Ph.D student

Estadísticas

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

Ver insignias

Feeds

Ver por

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

más de 3 años hace | 0

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

más de 3 años hace | 0

| aceptada

Resuelto


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...

más de 3 años hace

Resuelto


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...

alrededor de 4 años hace

Resuelto


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

alrededor de 4 años hace

Resuelto


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:...

alrededor de 4 años hace

Pregunta


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...

alrededor de 4 años hace | 0 respuestas | 0

0

respuestas

Respondida
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...

más de 4 años hace | 1

| aceptada

Respondida
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.

más de 4 años hace | 0

Respondida
(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 ...

más de 4 años hace | 0

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

más de 4 años hace | 3

Respondida
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...

más de 5 años hace | 1