Beantwortet
Can I have an explanation why my graph is plotting in a weird way?
Looks like you're having some missing data, "NaN". Why don't you try checking your data first?

mehr als 6 Jahre vor | 0

Beantwortet
How to fit data into pre-determined clusters?
How about reading this?: https://www.mathworks.com/help/stats/kmeans.html?searchHighlight=kmeans&s_tid=doc_srchtitle I dont re...

mehr als 6 Jahre vor | 0

Beantwortet
combining two neural networks (net1 is trained & net2 is untrained) in one bigger network
How about this?: https://www.mathworks.com/matlabcentral/answers/497749-avoid-training-certain-neurons#answer_407422?s_tid=prof...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
残差二乗和
(x, y)データが入ったtableデータを用意します (variable name は x, yとかにします) linear_model = fitlm(table, "y~x"); plot(linear_model) で直線がピッと引かれます。...

mehr als 6 Jahre vor | 1

Beantwortet
画像判別の交差検証について
いくつか誤解があるようなので、ご助言差し上げます。 (1) まず、画像も数字データです!行列的な形で数字が入っているので、それをベクトルっぽくすればあやめデータのようになります。まず、そのあたりのデータの感じをご自身の目で見て確認すると良いかなと思い...

mehr als 6 Jahre vor | 0

Beantwortet
画像判別の交差検証について
画像であろうが、あやめデータであろうが、全て「数字」を扱います。 画像だから特別な扱いがあるわけでは有りません。そのあたりの理解は大丈夫ですか? 画像をあやめデータと同じデータフォーマットに揃えてあげれば、cvpartitionでできます。もっと言...

mehr als 6 Jahre vor | 0

Beantwortet
画像判別の交差検証について
あやめデータと同じデータフォーマット(テーブル型)にして、cvpartitionすれば良いのでは? すみません、疑問点があまり理解できていません…

mehr als 6 Jahre vor | 0

Beantwortet
Data import from excel file with timestamp
Do you like GUI? How about using "import data" button from the ribbon. You can import your file via GUI as shown below: Y...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Why are some characters chopped off on the bottom in plots?
figure; plot([0,1],[0,1],[0,1],[0,1]) set(gca,'fontsize',18) legend('nissio', 'pop.'); Mine did work well with R2019b.

mehr als 6 Jahre vor | 0

Beantwortet
画像判別の交差検証について
ディープラーニングの場合はあまりやることは有りません。 基本的にデータ数が少ない場合に過学習を抑える目的でやります。DLはデータがそもそも大量に必要なのであまり必要がないのと、確率的勾配法アルゴリズムは言ってみれば、毎回違うデータで学習をやっているような...

mehr als 6 Jahre vor | 2

| akzeptiert

Beantwortet
dicomの読み込みについて
https://jp.mathworks.com/help/images/ref/im2single.html このあたりが参考になるかと思います。

mehr als 6 Jahre vor | 0

Beantwortet
CAM/Grad-CAMといった判別の可視化について
https://jp.mathworks.com/help/deeplearning/ug/gradcam-explains-why.html?searchHighlight=grad%20cam&s_tid=doc_srchtitle こちらのリンク先...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
Image Classification Using SVM Classifer
It is hard for you to tell if the features you extracted are good or bad. ML algorithms will tell you. Generally speaking, De...

mehr als 6 Jahre vor | 1

Beantwortet
How to remove the previous installation of MATLAB mac
What I did last week was just throw it into the bin. It worked.

mehr als 6 Jahre vor | 0

Beantwortet
FINDING FREQUENCY FROM FFT PLOT
Try this?: % P fft power % F fft frequency idx = (P == PowerThreshold); % detect the indices of the power that match the thre...

mehr als 6 Jahre vor | 0

Beantwortet
GoogLeNetのバージョンナンバーは?
Documentationの下の方にネタ元が書いてあります。 MathWorks Documentation

mehr als 6 Jahre vor | 2

| akzeptiert

Beantwortet
How to do average of different arrays of a matrix?
Stephen Cobeldick is right. Try this: % X --> 3490 x 63 matrix X = reshape(X, 5, 63, 698); X = mean(X); X = reshape(X, 698,...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Matrix operator error in matlab2019a
As it said, have you tried this one?: To perform elementwise multiplication, use '.*'. Imagine that you want to multiply/dev...

mehr als 6 Jahre vor | 0

Beantwortet
How to calculate double integral of a circular area?
You may want to use the indices: radius = 0.5; idx = sqrt(X.^2+Y.^2) < radius; This way, you can extract the elements of A ...

mehr als 6 Jahre vor | 0

Beantwortet
Why is different rng(1) rng(2) rng(3) in K means clustering?
Yes, you are correct. Seed is a general terminology in computational sciences - https://en.wikipedia.org/wiki/Random_seed

mehr als 6 Jahre vor | 0

Beantwortet
Why is different rng(1) rng(2) rng(3) in K means clustering?
K means clustering algorithm generates the mean vectors corresponding to the number of the cluster you provide. The point is th...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
[統計]一般化線形モデルのパラメータの推定方法について(the method of estimation GLM)
https://jp.mathworks.com/help/stats/fitglm.html#mw_0fd53dcd-2470-4661-8735-434f6ef41591 fitglmのDocumentationには以上の文献が参考として載ってい...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
アドオンアイコンの動作について
こんな画面が出てきます。 R2019bより。

mehr als 6 Jahre vor | 0

Beantwortet
将来のタイムステップの予測について
この例題は、入力と出力が同じタイプのものです。 何が行っているのかをご理解されれば、技術的な問題では無いとご理解いただけるかなと思います。 まず、学習段階では X --> Y (未来のX) のペアで教師あり学習をします テスト段階ではX_test...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Cell array of arrays into matrix
Did you recieve an error message or get something you did not expect? Check if the matrix is rectangular the matrix has the...

mehr als 6 Jahre vor | 0

Beantwortet
Cross Validation, Data Science
In MATLAB, you can use cvpartition https://www.mathworks.com/help/stats/cvpartition.html?searchHighlight=cvpartition&s_tid=doc_...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
How to combine multiple margin plots in the same graph?
wonder if subplot works for you? https://www.mathworks.com/help/matlab/ref/subplot.html?searchHighlight=subplot&s_tid=doc_srcht...

mehr als 6 Jahre vor | 0

Beantwortet
Poor Resolution of Pdf
check out "renderer" setting. https://www.mathworks.com/help/matlab/ref/print.html?searchHighlight=rendering%20file&s_tid=doc_s...

mehr als 6 Jahre vor | 0

Beantwortet
Why do i get an error when using readtable saying cannot open file
TRY - readmatrix instead: https://www.mathworks.com/help/matlab/ref/readmatrix.html

mehr als 6 Jahre vor | 0

Beantwortet
Is matlab have Multilabel recurrent neural network app like ANN toolbox
No apps exist for RNN. But deep network designer app works well for deep learning https://www.mathworks.com/help/deeplearning/...

mehr als 6 Jahre vor | 1

| akzeptiert

Mehr laden