
Hiro Yoshino
MathWorks
DISCLAIMER: Any pieces of advice or opinions posted here are of my own, and in no way reflect that of MathWorks.
Statistics
CLASIFICACIÓN
186
of 276.187
REPUTACIÓN
556
CONTRIBUCIONES
0 Preguntas
308 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
68
CLASIFICACIÓN
13.958 of 18.592
REPUTACIÓN
13
EVALUACIÓN MEDIA
5.00
CONTRIBUCIONES
1 Archivo
DESCARGAS
23
ALL TIME DESCARGAS
35
CLASIFICACIÓN
45.404
of 125.930
CONTRIBUCIONES
0 Problemas
4 Soluciones
PUNTUACIÓN
60
NÚMERO DE INSIGNIAS
2
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Content Feed
データに対して正弦波で近似を行いたい
初期値設定に問題があるのかなと思います。 アプリで実行しているのは、基本的には @Akira Agata さんと同じ方法なので (最小二乗法)、アプリの初期値を見直してみましょう。 アプリ > 詳細オプション > 係数の制約 から開始点 (初期値...
alrededor de 1 mes hace | 3
画像サイズと形式を指定して保存する方法と、コード内変数を変化させて連番で画像を保存する方法について
(1) 一番簡単な方法は、保存したいプロットにカーソルを合わせるとファイルに保存できるアイコンが出てくるのでそこから保存する。プログラミング的にやりたければ、 p1 = subplot(3,1,1); xP = 1e6.*xD; yP = 1e6...
alrededor de 2 meses hace | 0
| aceptada
二値化画像での大きいノイズの削除
こんな感じでどうでしょうか? I = imread("DSCF0009.JPG"); imshow(I) %トリミング I_Trim = imcrop(I,[0 0 3072 1500]); imshow(I_Trim) %しきい値のローカ...
2 meses hace | 0
| aceptada
How to clear workspace from a function?
You should understand Base and Function Workspaces. Note that they are different. One way you can delete variables from the Fun...
2 meses hace | 1
what is the matlab code for ploting dispersion against wavelength (for chromatic dispersion)?
You can use gradient to calculate this problem numerically. Let me use SiO2 as an example. data = readtable("SiO2.txt"); lamb...
3 meses hace | 1
畳み込みニューラルネットワーク(CNN)を用いて、画像から画像を生成するにはどうすればよいのでしょうか?
trainNetwork の response を見ると、イメージ回帰の response として h x w x d x c x N の 数値配列を指定することが可能なようです。 >以下のMATLABの例を用いて、[images, digits, an...
3 meses hace | 0
How to plot the signal having convolution in frequency domain?
Look like you are dealing with the equations symbolically - I wonder if this is what you really want to do.. anyway. Note this ...
3 meses hace | 0
| aceptada
What code can I use to get a signal from the image?
Taks this as an example. im = imread("coins.png"); imshow(im); if you want to convert the matrix into either row or column ve...
3 meses hace | 0
fitnlmでのサイズ不一致によるエラーについて
fitnlm の modelfun の解説を読むと分かる通り、modelfun は入力次元数を持つ列ベクトルを返すように設定しなくてはいけません。つまり modelfun(b,x) の引数 x の次元が n であったら、(nx1) の出力を返すように設定し...
3 meses hace | 0
R2018bで使用できていたアプリを、R2020bでも使用するためにはどうすればよいか
R2022a で コード互換性アナライザー というアプリがリリースされたので、これが一番楽かなと思いますが、R2020b 以前の機能でも同じようなことができます。codeCompatibilityReport や CodeCompatibilityAnal...
3 meses hace | 2
| aceptada
数値2重積分で発生する”配列のサイズがこの演算に適合しません”がなぜ発生するのですか?
無名関数の所かなという気がします: 12 = integral2(@(u1,u2) (g12(u1,u2).^2),0,1,0,1); なら上手く行くとかないでしょうか?
3 meses hace | 0
| aceptada
指定のテキストファイルを生成する方法
ひょっとしたらもう少しスマートな方法が有るかも知れませんが.... % データの用意 N = 10; X = rand(N,1,"like",1i+1); data(1:N,1) = real(X); data(1:N,2) = imag(X) ...
3 meses hace | 0
fitrnetの学習反復回数について
ニューラルネットワークの学習は過学習を防ぐ為に、早期打ち切りを行います。デフォルトでは、6回検証の損失を上回ると過学習と判定して、以降の無駄だと考えられる学習を打ち切ります。 もし上限まで実行したいのであればこの6回を増やせば良いという事になります。Va...
4 meses hace | 0
Does syntax checking support undefined variables?
MATALB automatically identifies problems. Debugging features help you diagnose specific issues, see as follows : Debugging and...
4 meses hace | 1
Save .fig and .jpg to folders selected earlier
I would add some more code in the MatlabFigureSaveLocationButtonPushed function as follows: saveFileName = "myFileName"; savef...
4 meses hace | 1
the error of 'Matlab can only run a file with a valid name'
Please make sure you have that file on the PATH or in the current working directory. In the case the file exist somewhere else ...
4 meses hace | 1
Grad-CAMで「リダクション層の活性化の勾配がすべてゼロです」とエラーがでますが、どう対処すればよいでしょうか?
gradCAM(net,x,categorical) の部分の、categorical を何か指定されていますか? 分類問題かなと思いますが、クラスラベルを指定してください gradCAM(net,x,"cat") 因みに、cellfun 無しでデー...
4 meses hace | 1
| aceptada
LSTMネットワークが過学習を起こしているときの対応
<< 過学習について>> 過学習というのは、"ここにあるように" 訓練誤差が小さくなって行き、汎化誤差が大きくなっていっている状態を指します。状況について一般的な解釈をここではさせていただきます: 損失値が小さくなり、その後横ばい: 学習が進んでいませ...
4 meses hace | 0
while and for loop
Let me remove the original idea as I did not think it was a homework ... sorry. input("msg") is useful. You can use it.
5 meses hace | 0
Pressure Intensifier, The example shows how to model, parameterize, and test a pressure intensifier in examples section of simulink
Of course yes. Why don't you try this: which sscfluids_pressure_intensifier -all If this returns the path to the code, it mea...
5 meses hace | 0
I want to plot selected data from rows and columns
Let me use the ulr info like @KSSV @Torsten did!! Here you are: data = readtable("https://www.mathworks.com/matlabcentral/answ...
5 meses hace | 0
Pressure Intensifier, The example shows how to model, parameterize, and test a pressure intensifier in examples section of simulink
I wonder if you have the corresponding Toolbox; in this case it is Simulink Fluid. Check and see if Simulink Fluid is available...
5 meses hace | 0
学習曲線において精度の意味
恐らく悩んでいるポイントは、時系列のデータを"全部並べて学習する"のと、"分けてそれぞれ学習する" ことで結果が異なるのは何故なのか?という事だと思うんですが、それで良いですか? そうだと仮定して、2つの場合で比較します: [全部並べて学習する] ...
5 meses hace | 3
| aceptada
predictAndUpdateState関数で時系列の予測をしていた時に起きた問題
predictAndUpdateState のオプションに "MiniBatchSize" というオプションがあります。このデータ数の単位で処理を実行します。デフォルトのサイズは 128 個です。この場合だと net = predictAndUpdate...
5 meses hace | 0
| aceptada
runge kutta for 2 order ODE
Let us assume that and re-write the problem as follows: Let's transform it so it can be used in an ode setting: These a...
5 meses hace | 0
is matlab 'fit' function changing behavior ?
There are actually many "fit" functions avaiable within MATLAB. MATLAB determines which "fit" function to use based on the type...
5 meses hace | 0
| aceptada
Take number from excel in App Designer
readcell returns a "cell" value but not a double scalar. This is where you made a mistake. Let me convert cell to double. Firs...
5 meses hace | 0
| aceptada
Adjust the color bar of all thermal images to be consistent
You can control the range of colorbar with clim: [X,Y] = meshgrid(-5:.5:5); Z = X.^2 + Y.^2; tiledlayout(1,2) % Left plo...
5 meses hace | 0
二値化画像から主成分分析するにはどうしたらよいですか?
主成分分析 / KL 変換 はデータの集合に対して、その集合の情報量 (分散) が大きくなる部分空間 (基底) を順番に探していく手法ですので、画像一枚からではそれは求まりません。画像を沢山あつめて、その画像から基底となる画像を見つけるイメージです。 ...
5 meses hace | 1
| aceptada
Docking button freezes Matlab R2022B
Hi, I am wondering if your OS meets the system requirement? https://www.mathworks.com/support/requirements/matlab-mac.html It ...
5 meses hace | 0