Community Profile

photo

Shota Kato


Last seen: 4ヶ月 前 2018 年からアクティブ

Followers: 0   Following: 0

連絡

2019.4~ Ph.D student

統計

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

バッジを表示

Feeds

表示方法

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

3年以上 前 | 0

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

3年以上 前 | 0

| 採用済み

解決済み


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

3年以上 前

解決済み


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

約4年 前

解決済み


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

約4年 前

解決済み


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

約4年 前

質問


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

約4年 前 | 0 件の回答 | 0

0

回答

回答済み
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...

4年以上 前 | 1

| 採用済み

回答済み
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.

4年以上 前 | 0

回答済み
(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 ...

4年以上 前 | 0

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

4年以上 前 | 3

回答済み
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...

5年以上 前 | 1