Respondida
3次元点群データの体積算出
<https://jp.mathworks.com/help/matlab/ref/boundary.html boundary関数> はいかがでしょうか。

alrededor de 9 años hace | 1

| aceptada

Respondida
vl_siftが未定義ですと表示されてしまいます.
vl_sift とは <http://www.vlfeat.org/ VLFeat> の関数でしょうか・・。VLFeat には詳しくないですが、インストールされていますか? もし他の方が書かれたコードであれば、製作者に聞くのも近道です。

alrededor de 9 años hace | 0

Respondida
行列の計算について
<https://jp.mathworks.com/help/matlab/ref/ismember.html ismember関数> が使えるかなと。 以下のサンプルコードを実行してみてください。 %サンプルデータ作成 % 点...

alrededor de 9 años hace | 0

| aceptada

Respondida
三次元グレースケール画像内で、指定した範囲内のエントロピーの計算の仕方
グレースケールのエントロピーは <https://jp.mathworks.com/help/images/ref/entropy.html _entropy_ 関数>. 範囲を指定しての局所的なエントロピーは <https://jp.mathwork...

alrededor de 9 años hace | 2

| aceptada

Respondida
グレースケール行列の三次元イメージ表現
<http://jp.mathworks.com/matlabcentral/answers/319470-70 70枚程度あるスライ​ス画像を重ねて三次元​表現する方法> 上記エントリーにも記載(サンプルコード付き)がありますが、 <https...

alrededor de 9 años hace | 2

| aceptada

Respondida
How to fill a 3D plot?
I am not sure what you want but if you simply want to create a filled square X = [0; 1; 1; 0]; Y = [0; 0; 1; 1]; Z = [1;...

alrededor de 9 años hace | 1

Respondida
平面(ax+by+cz+d=0)への近似part2
実行結果と _fitresult_ を直接使った場合についての情報、ありがとうございます。 改めてコードを見たところ、近似の際にデータ(x,y) の正規化を行っていることに気が付きました。GUI上ですと「データのセンタリングとスケーリング」チェック、...

alrededor de 9 años hace | 0

Respondida
平面(ax+by+cz+d=0)への近似part2
|しかし、この方法により算出した方程式は図の青緑の面の形とは違うものになってしまいました。| とのことですが、係数は正しく使われていそうに見受けられます。どのような違いとなりましたか? 面の形自体が異なるのかそれとも表示上の(表示範囲)などが異なる...

alrededor de 9 años hace | 1

| aceptada

Respondida
顔、目、口、鼻 の検出について
<http://jp.mathworks.com/matlabcentral/fileexchange/19912-open-cv-viola-jones-face-detection-in-matlab> のコメント欄に記載がありましたが、下記のページ...

alrededor de 9 años hace | 3

| aceptada

Respondida
how to convert 0-60 scale to 0-255 scale in image
_imadjust_ function from Image Processing Toolbox could help you. See the example codes: <http://www.mathworks.com/help/ima...

alrededor de 9 años hace | 0

Respondida
風のuとv成分を世界地図にベクトルで表示する方法
<https://jp.mathworks.com/help/map/ref/quiverm.html _quiverm_ 関数> が使えるかと思います。確認してみてください。 u_1 = load('Uwind_2001_1.txt'); ...

alrededor de 9 años hace | 1

Respondida
1D Heat Conduction using explicit Finite Difference Method
It seems your initial condition and boundary conditon (x = L) are missing in the code. Try L=1; t=1; k=.001; n=11; ...

alrededor de 9 años hace | 4

| aceptada

Respondida
平面(ax+by+cz+d=0)への近似
<http://samueruchoi.blogspot.jp/2013/02/matlab_20.html?m=1> ような例もあるようですが、Curve Fitting Toolbox の <https://jp.mathworks.com/...

alrededor de 9 años hace | 3

| aceptada

Respondida
Replace an element in a matrix if it's a member of an array with zero
<https://www.mathworks.com/help/matlab/ref/ismember.html _ismember_ function> can do the job. As it's stated in the doc page, "L...

alrededor de 9 años hace | 1

| aceptada

Respondida
Why two equal numbers are not equal?
Also please refer to "Compare Floating-Point Numbers" example of the doc page: <https://jp.mathworks.com/help/releases/R2016b/m...

alrededor de 9 años hace | 0

Respondida
How do I write a script that creates an M x N array of random numbers?
M = 5; N = 4; a = rand(M,N); a(a<=0.2) = 0; a(a>0.2) = 1;

alrededor de 9 años hace | 0

Respondida
Stacked Autoencoder + Softmax-layer のNNをSVMへ転移学習したい
R2016b の時点では、ファインチューニング後にSoftmax-layerの前までの層の出力を取り出す機能は実装されていませんが、ファインチューニング後のネットワーク (deepnet) から 重み Weight とバイアス Biases を手動でコピー...

alrededor de 9 años hace | 1

| aceptada

Respondida
How to split a matrix based on array similarity
I am not sure how you define "similarity" but you can try out clustering functions available in Statistics and Machine Learning ...

alrededor de 9 años hace | 0

Respondida
How to solve system of first order differential equations
First off, I'd suggest reformulate your equation into dy1/dt = f1(y1,y2,u1,u2); dy2/dt = f2(y1,y2,u1,u2); Then you can...

alrededor de 9 años hace | 0

Respondida
MATLAB Runtimeで期限切れが発生する
MATLAB Compiler Runtime (MCR) 自体の有効期限というのは初耳です・・。 実行されようとしているアプリケーションが評価版のMATLAB Compilerを使用して作成されたもの、という可能性はありますがいかがでしょうか? ...

más de 9 años hace | 5

| aceptada

Respondida
How to perform moving average?
Have you checked movmean function? <http://www.mathworks.com/help/matlab/ref/movmean.html>

más de 9 años hace | 1

Respondida
patchの表面カラーにテクスチャを割り当てることはできますか?
詳細に記載頂きありがとうございます。 おっしゃる通り patch オブジェクトでは、全体の色、もしくは面毎/頂点毎の色指定にのみ対応しており、ポリゴンの頂点の密度が粗い場合、テクスチャ画像の再現は難しいですね。個人的にはsurface オブジェクトの...

más de 9 años hace | 4

| aceptada

Respondida
How can I multiply cell arrays
Not sure if the way you described is the best way to proceed but here you can make use of _cellfun_ to achieve I think what you ...

más de 9 años hace | 0

| aceptada

Respondida
2014b で save(uisave)を用いてmat fileを保存する際、figure を保存しないようにするためにはどうすればいいですか?
おっしゃる通り、この動作は R2014b の仕様変更によるものです。uisave や save を実行する際に、保存すべき変数名を明示的に指定して回避することができるか思いますが、いかがでしょうか? figure などの GUI を表示した場合、R2...

más de 9 años hace | 2

Respondida
windows7 8.1 10の32bitOSにて評価版を使用したいのですが存在しますか?過去のVer.でも構いません。
セルフサービスでご利用頂ける評価版は最新版(現在R2016b) のみになります。32bit OS で使用できる R2015b 以前のバージョンを試されたい場合には、 <http://www.mathworks.com/programs/trials/...

más de 9 años hace | 5

Respondida
How can I retrieve RGB array from a colormap given a CData?
By default (with CDataMapping property is set to 'scale'), CData is scaled to "map" to colormap range. So if you somehow convert...

más de 9 años hace | 2

Respondida
Solving ODE45 equations in matlab without a function
It is stated that "The function dydt = odefun(t,y), for a scalar t and a column vector y, must return a column vector dydt" (See...

más de 9 años hace | 0

| aceptada

Respondida
How do I make plot a 3D matrix as a scatter plot with color based on value?
<http://www.mathworks.com/help/matlab/ref/scatter3.html scatter3> allows you to specify color. Please have a look at the example...

más de 9 años hace | 1

Respondida
Get variable out of ode 45
One way is to use OutputFcn. The following entry could be of use. <https://jp.mathworks.com/matlabcentral/answers/305698-how-...

más de 9 años hace | 1

| aceptada

Respondida
matlabにて階層型隠れマルコフモデル(HHMM)の作成は可能でしょうか?
階層型隠れマルコフを構成する組み込み関数はありません(R2016b 現在)が、Github にMATLABでの実装例があるようです。 <https://github.com/TheFGX/Hierarchical-Hidden-Markov-Mode...

más de 9 años hace | 1

Cargar más