Answered
Avoid training certain neurons
There is an option to keep specific layers' learning rates low so you can fix them as they are. for example fullyConnectedLaye...

6 years ago | 0

| accepted

Answered
Problem in Navie Bayes theorem code
I guess one of the distributions does not match what it is, i.e., variance is zero. In this case, Gaussian distributions cannot ...

6 years ago | 0

Answered
Import data from google sheets to matlab
try opts = detectImportOptions(filename) https://www.mathworks.com/help/matlab/ref/detectimportoptions.html

6 years ago | 0

Answered
トレーニングシーケンスの特徴次元について
データの作り方が多分おかしいのだと思われます。 こんな風にして、一つのベクトルを一つのcellに入れます。 つまり、データセット数 (ここは自分で決める) x 4 のセルを作って、そのセルの一つ一つには 上のようなベクトルが入っているようにします...

6 years ago | 1

| accepted

Answered
Problem in Navie Bayes theorem code
'ClassNames',{'HandGrip','HandOpen','HandRest','WristExtension','WristFlexion'}); the number of class labels is 5 but I guess y...

6 years ago | 0

Answered
how can we find eigen values and eigen vector of a matrix having variable like x or y ?
a is supposed to be in its size otherwise you can calculate neither eigen values nor eigen vectors to begin with.

6 years ago | 0

Answered
Plotting of 15 years data on same graph.
Convert the date information to datetime type and extract just "months" and "days" using the functions, "month" and "day". This...

6 years ago | 0

Answered
ODEの解を含むDDEの解法
This may help you out - Symbolic Math Toolbox? https://jp.mathworks.com/products/symbolic.html

6 years ago | 0

Answered
微分器の周波数応答を低周波領域において正確に解析できない原因について
最小の周波数を計算する際に、窓サイズを考慮していますよね。そこで疑問なのですが、お使いの公式は最小の周波数の理論計算であることは確かですか?ハニング窓以外でもその式を使う事ができるとなると、怪しい気がします。 時間空間で窓を適用する理由は、離散フーリエ変...

6 years ago | 0

| accepted

Answered
深層学習を使用した時系列予測について
ニューラルネットワークで最後の部分の覚え方 まとめ: 分類→クラスメンバシップ確率を計算するので、softmaxLayerが必要です。そしてネットワークの評価関数を交差エントロピーとして設定するために、最後にclassificationLayerを置...

6 years ago | 1

| accepted

Answered
Is there a mistake with my code to calculate ballistic trajectory?
Following the equation of motion The time the ball reaches the highest point is given by Yours looks ok though it depen...

6 years ago | 0

Answered
FOR loop through multiple datasets
https://www.mathworks.com/help/matlab/ref/sum.html?searchHighlight=sum&s_tid=doc_srchtitle will help you out, I hope.

6 years ago | 0

Answered
How to run cell array from 1 to max_iter?
Remember: cell(1) --> 1st cell as a cell-type cell{1} --> the content of the 1st cell as a number, string, ... whatever

6 years ago | 0

Answered
2変量確率分布に従った乱数の発生方法について
変数間の関係を記述するコピュラを指定する方法があるようです: https://jp.mathworks.com/help/stats/examples/simulating-dependent-random-variables-using-copulas...

6 years ago | 1

| accepted

Answered
2変量確率分布に従った乱数の発生方法について
カーネル分布というのはカーネル密度推定で得られた確率密度分布の事でしょうか? それでしたら: https://jp.mathworks.com/matlabcentral/answers/464916-how-to-generate-random-sa...

6 years ago | 1

Answered
how to put a ruler in an image?
What command did you use to show the image? Try imshow(), and set the xdata or ydata properties to meet what you want.

6 years ago | 0

| accepted

Answered
super efficiency dea error: Index exceeds matrix dimensions
X=[];%input matrix Y=[];%output matrix Obviously the input dimensions for X, Y are zero, and thus n=size(X',1); m=size(X,1);...

6 years ago | 0

Answered
Various types of RMSE in Regression Learner. Is it a bug?
They should be matched together however it is not necessarily a bug because ... RMSE is an estimator of standard error, or stan...

6 years ago | 0

| accepted

Answered
回帰学習器の応答プロットについて
モデルをエクスポート(名前 trainedModel)します。そしてコマンドライン上で trainedModel.predictFcn(X) とすると、入力データXに対する応答を得ることができます。 関数については、例えばSVMですと traine...

6 years ago | 2

| accepted

Answered
Symbolic Math Toolbox error
Similar question has been raised: https://jp.mathworks.com/matlabcentral/answers/489700-is-matlab-compatible-with-macos-catalin...

6 years ago | 0

| accepted

Answered
curve fitting toolboxを使った曲線回帰について
(1) coeffvalues(fitresult) で係数を取ってこれます。 (2) 私の環境では出てきません… キャプチャ頂けますか?

6 years ago | 0

| accepted

Answered
R-CNNでのクラス名におけるエラーについて
まずは、こちらをご参考にしてみては如何でしょうか? https://jp.mathworks.com/help/vision/examples/object-detection-using-deep-learning.html#DeepLearningR...

6 years ago | 1

Answered
Matlabを起動するとレインボーカーソルが出る
Why will MATLAB not start up properly on my Mac? https://jp.mathworks.com/matlabcentral/answers/95806-why-will-matlab-not-start...

6 years ago | 2

| accepted

Answered
Can I use multiple responses in the regression learner app?
Please take a look at https://www.mathworks.com/help/stats/select-data-and-validation-for-regression-problem.html It says "Th...

6 years ago | 0

Answered
Regularization for Non-linear fitting with fitnlm.
First of all, fitlm is for "Linear regression". But I'm sure you're doing actually Linear regression - you just do not underst...

6 years ago | 0

Answered
DTW、最短ユークリッド距離について
最短ユーグリッド距離 なるものがどういった定義のものなのか分かりかねますが、同じページ中に引数の説明が書いてあります。Distanceを指定すればお好みの距離で計算が可能です。無い場合はカスタムすることが可能です。 指定は pdist(X, 'eucl...

6 years ago | 1

| accepted

Answered
LSTMを使わない時系列予測について
(1)のようになります。一次元入力に対して、一次元出力が得られます。 (2)のようにやりたいのであれば、for文でやられては? ご理解されているとは思いますが、(2)のようにやっても時系列解析出来ません。 というのも、それぞれの入力に対して出力が...

6 years ago | 0

| accepted

Answered
LSTMをつかって、複数インプットから一つのアウトプットを出したいのですが、、、
「入力」と「答え」 の対が必要です。(現状、一つだけ?) 「答え」は未知の入力が有った場合に得られる出力と同じフォーマットである必要が有ります。 (一つの値なら一つの値、連続値なら連続値) LSTMが特殊に見えるかもしれませんが、普通の回帰モデル...

6 years ago | 0

Answered
LSTMを使わない時系列予測について
こちらご覧ください https://jp.mathworks.com/help/stats/fitrsvm.html#busljl4_sep_shared-Y fitrsvm(X,Y) のYはn行1列のベクトルである必要があります。

6 years ago | 1

Answered
信号処理の際、窓関数の使用有無とフーリエ変換後の各周波数帯域ごとのパワーの算出はどのようにすべきですか?
(1) 離散フーリエ変換は処理するデータが周期的であると仮定します。従って、今お持ちのデータの二倍の長さの測定を仮に実施したとすると、今お持ちのデータ二つ分が出てくるという仮定があります。つまり、データの始まりと終わりが同じ値であるはずですね。しかし通常...

6 years ago | 0

Load more