Risposto
plot([1:50000],[1:50000],'+' );すると、LoadLibrary failed with error 193: %1は有効な32bitアプリケーションではありません。 というポップアップが出てMATLABが落ちてしまう。
この問題は、MATLAB の OpenGL レンダラが原因です。グラフィックスカードのドライバを更新することで問題が解決します。 また、グラフィックスカードのドライバ更新が難しい場合は、他のレンダラ (painters, ZBuffer) にご変更く...

quasi 8 anni fa | 3

Risposto
Gaussian Process Regression:I can plot the graphs using "fitrgp", but can I get the mean μ(x) and standard deviation sigma�(x)?
Yes. The first output argument of "resubPredict" is the mean and the second is the sigma. If you want to draw them, use errorb...

quasi 8 anni fa | 1

| accettato

Risposto
複数の円の表示
for の部分を次の1行で置き換える方法ではいかがでしょうか。(for で描いたときと xlim, ylim が少し変わります) plot( (R*sin(t)+X)', (R*cos(t)+Y)' ) <</matlabcentral/a...

quasi 8 anni fa | 4

| accettato

Risposto
頂点に誤差のある面積の求め方
扱われているデータは緯度経度情報を含む地図/位置情報データでお間違いないですか? bufferm は通常のxy座標の polygon とは異なり、地図データに特化した関数なので念のための確認です。 位置情報データをお使いの場合、 <https://j...

quasi 8 anni fa | 2

| accettato

Risposto
頂点に誤差のある面積の最大値を求めるには?
最大面積となる頂点は最適化計算で求めることができます。 多角形の面積は頂点 i, i+1, 中心 の三角形の面積の和ですので、それを目的関数とします。 ここで定義した目的関数を最大にするような15つの頂点を最適化で求めます。 制約条件として、それぞれ...

quasi 8 anni fa | 3

| accettato

Risposto
R-CNNを使った画像検出のプログラム
変数 'car' が見つかりません。 という点が問題点のようです。 car.mat に、car や layers という変数が入っていますでしょうか。 >> load('car.mat', 'car', 'layers') では、matフ...

quasi 8 anni fa | 5

| accettato

Risposto
je trouve pas matlab 2009 a telecharger
<https://jp.mathworks.com/downloads/web_downloads/> Click -> Click here to download any MathWorks release and select R2009a/...

quasi 8 anni fa | 0

Risposto
Scatter Plot of 2 dimensional vectors
Convert the cell array into double first with <https://www.mathworks.com/help/matlab/ref/cell2mat.html cell2mat>. That makes eas...

quasi 8 anni fa | 0

Risposto
helperImportMatConvNet error-- Supports only AlexNet
Yes. You can for example load VGG16 with following code: >> cnnURL = ‘http://www.vlfeat.org/matconvnet/models/beta16/imagen...

quasi 8 anni fa | 2

| accettato

Risposto
Plotting a line in a worldmap
With PLOTM, you need to define the map axes first like: load coastlines axesm sinusoid; plotm(coastlat,coastlon); ...

quasi 8 anni fa | 0

| accettato

Risposto
if文をclasstification tree viewerで表示させる方法をおしえてください。
FITCTREE 関数のドキュメントにあるようなtree viewer はルールベースドの手法ではなく機械学習の手法向けに作成されています.今回の場合は条件をあらかじめ指定するルールベースドの木を作成されたいため,残念ながらこのtree viewer を使...

quasi 8 anni fa | 1

| accettato

Risposto
ディシジョンツリーの文の作り方
ルールベースの木構造を作成するには,yamateさんが途中まで書かれているように IF-ELSE-ENDや SWITCH-CASE (リーフが多い場合)を使用します.今回の場合はIFの中にさらにIFがあるような入れ子構造にします.今 node2 などを書か...

quasi 8 anni fa | 1

| accettato

Risposto
処理の自動化
今回の場合のように数値が変わるだけであれば,IFよりもFORが簡易です. 次の2つの点を変更してください. 1. IMREAD内のquoteを以下のように変更します. ['DSC0747', int2str(k), '.JPG'] ...

quasi 8 anni fa | 2

| accettato

Risposto
web上でアクティベーションの変更は可能でしょうか?
ライセンスセンタ経由でできます. <https://jp.mathworks.com/matlabcentral/answers/99859>

quasi 8 anni fa | 0

| accettato

Risposto
How can I supply (trainsvm) my dataset if it was in text form?
Assuming that you use <https://www.mathworks.com/help/stats/svmtrain.html SVMTRAIN> function. 1. Your variable should be eith...

quasi 8 anni fa | 0

Risposto
use regexp to find specific names.
Use datetime instead of regular expressions: % from 2016/12/01 to 2016/12/10 with every other day datevec = datetime(201...

quasi 8 anni fa | 0

Risposto
how to make equation solving calculator in matlab gui
1. Create a callback for the pushbutton (on .fig, right click and select callback - it will create a callback function in .m) ...

quasi 8 anni fa | 0

Risposto
How to extract feature using GLCM?
Does glcm mean Gray-Level Co-Occurrence Matrix? If so, apply <https://www.mathworks.com/help/images/ref/graycomatrix.html GRAYCO...

quasi 8 anni fa | 0

| accettato

Risposto
Is it possible and how to customize error function of CNN of MATLAB 2016b?
No. In R2016b, you cannot change the loss function other than the cross entropy function in classificationLayer.

quasi 8 anni fa | 1

| accettato

Risposto
How to get optimal tree when using random forest method
Optimize tree with Bayesian Optimization (use bayesopt function). This feature is introduced in R2016b. * Tune Random Fores...

quasi 8 anni fa | 0

Risposto
Matlab on Ubuntu ?
Yes. System requirements for MATLAB depends on MATLAB version that you want to use. See the Linux tab of: - System Requiremen...

quasi 8 anni fa | 0

| accettato

Risposto
plots of network responses and actual values
You can plot dynamic network time series response in comparison to the actual data with <http://jp.mathworks.com/help/nnet/ref/p...

quasi 8 anni fa | 0

Inviato


Machine Learning (Regression and Classification) demo
Machine Learning (Regression and Classification) demo presented at MATLAB EXPO Japan 2016

quasi 8 anni fa | 2 download |

Thumbnail

Risposto
Matlab Clustering technique with textual data
Make the textual data <https://jp.mathworks.com/help/matlab/ref/categorical.html categorical> to reduce information.

quasi 8 anni fa | 0

Risposto
how can I plot an icon on a map axis
If you have an internet connection, use <https://jp.mathworks.com/help/map/ref/webmap.html WEBMAP> to draw a map and <https://jp...

quasi 8 anni fa | 1

| accettato

Risposto
How to create html formatted text as a message part of send mail function
Unfortunately, SENDMAIL does not support HTML format. It is written in the documentation. (You can send HTML files as an attache...

quasi 8 anni fa | 0

| accettato

Risposto
I need a world coastlines database as text, how to make that out of the mapping module?
<https://www.ngdc.noaa.gov/mgg/shorelines/> <http://openstreetmapdata.com/data/coastlines> <http://www.naturalearthdata.co...

quasi 8 anni fa | 0

Risposto
How run two algorithms with parallel ?
Parallel Computing Toolbox can allow you to run two processes in parallel. 1. Write two algorithms on two separated functions...

quasi 8 anni fa | 0

Risposto
Is it possible do make a page break in live scripts?
Live script is the similar format with MATLAB documentation. The features are limited, so that the users can make reports easily...

quasi 8 anni fa | 2

| accettato

Risposto
How can I use GPU on deep learning?
In R2016b, GTX 1070 (CUDA 8.0) is not supported. See <https://jp.mathworks.com/matlabcentral/answers/289457>

quasi 8 anni fa | 0

Carica altro