Respondida
matlabの境界条件について
有限差分に imfilter を使うのは面白い活用例ですね。 >> % オプションで値を指定すると固定値境界に とあるように、 U = 2.*U1 - U2 + c^2.*imfilter(U1, F, 100).*dt*dt; ...

alrededor de 8 años hace | 0

| aceptada

Respondida
How to formulate a fitness function cosists of sum of different variables?
Hmm, I'm still struggling to understand your situation. This is pure speculation, but I'd try the followings. First, define a...

alrededor de 8 años hace | 0

| aceptada

Respondida
fminunc の step size について
目的関数の勾配を有限差分で推定する際の差分幅は制御できますが、ステップサイズ自体はアルゴリズムが決定するため直接固定する方法はありません。何か固定されたい理由や困りごと(収束しない等)などありますか?

alrededor de 8 años hace | 1

Respondida
映像中の対象物の座標
その記録されたい対象物は何でしょうか。人の顔などすでに組み込みの関数が用意されているものもありますし、一般的なものであればディープラーニングを使って検出する仕組みを作ることも必要かもしれません。 <https://jp.mathworks.com/p...

alrededor de 8 años hace | 2

Respondida
R2017bをインストールしました。ウィンドウからの「ログイン」ボタンを押しても反応せず、「アドオン」ボタンを押しても反応せず、困っています。
まったく反応しないのは困りましたね。特にエラーメッセージなども出ませんでしょうか? まずは下記で紹介している"初期化"を試してみるのも1つの手かと思います。 <https://jp.mathworks.com/matlabcentral/ans...

alrededor de 8 años hace | 0

Respondida
画像を入力としないCNNを構築するにはどうしたらいいでしょうか?
imageInputLayer([1 6000]); などと、信号を 1xN の"画像"として取り扱った例があります。 layers = [imageInputLayer([1 6000]) convolution2dLayer...

alrededor de 8 años hace | 1

Respondida
3Dデータ中の球体カウント
もし画像のように綺麗に分離している球体の形をしている点群のみであれば MATLAB の alphaShape オブジェクトでうまくいくかもしれません。いろんな形の塊が存在しその中から球体を見つける、という場合には別の方法を考える必要があります。 ...

alrededor de 8 años hace | 1

| aceptada

Respondida
数値データの畳み込みができません.
imageInputLayer([1 6000]); などと、信号を 1xN の"画像"として取り扱った例があります。 layers = [imageInputLayer([1 6000]) convolution2dLayer...

alrededor de 8 años hace | 0

| aceptada

Respondida
CNNを使って波形から回帰を行うことはできますか?
imageInputLayer([1 6000]); などと、信号を 1xN の"画像"として取り扱った例があります。 layers = [imageInputLayer([1 6000]) convolution2dLayer...

alrededor de 8 años hace | 2

| aceptada

Respondida
Error: Undefined function or variable [even if I defined the same variable on previous line]
You can place a breakpoint at the line where error happened and see if the variable is really defined. See <https://jp.mathwo...

alrededor de 8 años hace | 0

Respondida
対数積分の計算について,About Logarithmic integral function
WolframAlpha で試したところ MATLAB と同じ結果になります。 <http://www.wolframalpha.com/input/?x=0&y=0&i=li(-0.302303-4.46191i)> おそらく定義が異なるのか...

alrededor de 8 años hace | 0

| aceptada

Respondida
I want to obtain the coordinates of the object detected by the detector
Answered here <https://jp.mathworks.com/matlabcentral/answers/377306->

alrededor de 8 años hace | 1

Respondida
検出器で検出した物の座標を取りたい
例題を実行すると分かりやすいですが、例題では検出結果として >> bbox bbox = 415 135 35 38 が得られます。それぞれ境界ボックス(四角形)の x 座標、y座標、幅、高さを意味しますが、求めて...

alrededor de 8 años hace | 0

| aceptada

Respondida
How can I detect the number of circles on the picture on MATLAB?
As the error message states that "The value of 'RadiusRange' is invalid. Expected input number 2, RADIUS_RANGE, to be positive."...

alrededor de 8 años hace | 1

| aceptada

Respondida
遺伝的アルゴリズムの目的関数の収束状況の確認方法
簡単なのは [x,fval,exitflag] = ga(fitnessfcn,nvars,...) と実行して exitflag の結果を確認する方法です。exitflag の値とその収束結果との対応は下記を確認ください。 <http...

alrededor de 8 años hace | 0

| aceptada

Respondida
How can I draw many circles without overlapping?
Interesting problem. One way is to keep generating a set of centers until every center is separated by more than the fixed radiu...

alrededor de 8 años hace | 1

| aceptada

Respondida
Code to draw multiple circles that do not overlap
When the inputs are matrices, the functions draw columns of Y versus columns of X. So could you try changing fill(x,y,'k') ...

alrededor de 8 años hace | 0

| aceptada

Respondida
ヒストグラムのビンを固定にすることはできますか?
'BinLimits' オプションで可能かと思いますので、試していただけますか? 例: A=imread(fname); [Z,edges]=histcounts(A,255,'BinLimits',[0,255]); 参考:...

alrededor de 8 años hace | 1

| aceptada

Respondida
MEXファイルを利用した関数のオーバーヘッドを減らす方法について
再現ステップを詳細にまとめてくださりありがとうございます。Windowsマシンではありますが、同じような傾向がこちらでもR2017bで確認できました。 MEX関数を実行する際のオーバーヘッドがどこで発生しているのかを検討していたのですが、その過程で純...

alrededor de 8 años hace | 4

| aceptada

Respondida
nprtool関数を用いてプロットしたROC曲線のAUCの算出方法について
残念ながら nprtoolのGUIでは求めることはできません。 コマンドベースで実行する必要がありますが、例えば roc 関数 (Neural Network Toolbox) で各出力クラスの受信者動作特性を計算した後に、trapz関数 (MATLAB...

alrededor de 8 años hace | 0

| aceptada

Respondida
quiverの表示範囲をaxesの大きさに固定することは可能ですか?
quiver 関数の scale オプションだといかがですか? 引用:"自動的なスケーリングを使用せずに速度ベクトルをプロットするには、scale = 0 を使用してください。" <https://jp.mathworks.com/help/matl...

alrededor de 8 años hace | 0

| aceptada

Respondida
TFCEでのestimate操作時のerror
こちらが参考になるかもしれません。 <https://jp.mathworks.com/matlabcentral/answers/96239-toolbox-path-cache 起動時に Toolbox Path Cache に関する警告が出力さ...

alrededor de 8 años hace | 1

Respondida
FastRCNNによる物体検出時のout of memory エラー
Fast/Faster R-CNN は、画像全体から大きな Feature Map を生成するので、GPU のメモリを大量に消費します。もう既に使われていますが、SmallestImageDimension というパラメータを設定すると、学習時に画像のサイ...

alrededor de 8 años hace | 0

| aceptada

Respondida
配布したExcel Add-inを実行すると「Error in VBAProject:ActiveXコンポーネントはオブジェクトを作成できません。」が表示される。
<https://jp.mathworks.com/help/compiler/excel/errors-and-solutions.html Excel アドイン エラーと推奨される解決策> の3つ目のエラーですが、DLL が登録されていない可能性があ...

alrededor de 8 años hace | 1

| aceptada

Respondida
CNNでのTrainingOptionでの学習状況の表示のさせ方
残念ながら、R2017bでは'Smoothed'を非表示にしたりフォントを変更するなどの変更を加えることはできません。 もし差し支えなければ、'Smoothed' を非表示にされたい理由や、他にもここは変更できるようになった方がよいなどもございましたら教...

alrededor de 8 años hace | 0

| aceptada

Respondida
メダカの様な、形が微妙な対象の重心を求め、表示させたいのですがどうすればよいのでしょうか?
regionprops が使えるかと。下記のページにあるサンプルプログラムをご覧ください。 詳細: <https://jp.mathworks.com/help/images/ref/regionprops.html イメージ領域のプロパティの計測...

alrededor de 8 años hace | 1

| aceptada

Respondida
MATLABデータをSTLファイルに変換したい
点群データからのSTL作成サンプルを作ってみたので参考まで紹介します。 File Exchangeの stlwrite 関数を使用しました。事前にダウンロードして下記を実行してみてください。 <https://jp.mathworks.com/ma...

alrededor de 8 años hace | 2

| aceptada

Respondida
カラーマップの最小カラーと最大カラーデータの値を固定することは可能でしょうか?
座標軸の CLim プロパティに特定の値を設定することでできますよ。 たとえば、 numFaces = 600; [x,y,z] = sphere(numFaces); pcshow([x(:),y(:),z(:)]);...

alrededor de 8 años hace | 1

| aceptada

Respondida
配列の要素操作に関するエラー
a=bboxes b=score c=label   d=score<0.9; score(d)=[] label(d)=[] bboxes(d,:)=[] で行けるのではと。ここで d は論理配列で...

más de 8 años hace | 2

| aceptada

Respondida
3次元で表示される図を2次元で表示させることは可能でしょうか?
view(2) が便利ですよ。 view関数の詳細はこちら: <https://jp.mathworks.com/help/matlab/ref/view.html>

más de 8 años hace | 1

| aceptada

Cargar más