A répondu
Classifying images using Machine Learning or Deep Learning?
First try the general machine learning algorithms to classify such as Support Vector Machines. The following example would be si...

environ 7 ans il y a | 0

| A accepté

A répondu
Problem marking coordinates over a map
When you combine plotm (or other *m.m functions in Mapping Toolbox) and geoshow, you need to define axis in GEOSHOW function. Al...

environ 7 ans il y a | 1

| A accepté

A répondu
How to replace a value in a matrix of pixels using matlab ?
If you want to replace the pixel (i,j)=(100,125) of the variable img with 0.2, use the following code: i = 100; j = 125;...

environ 7 ans il y a | 0

A répondu
my matlab is not connected to the internet, how can I download updates and patches?
If you want to download newer versions of MATLAB, ask MathWorks sales person to send you DVDs. For patches, find another machine...

environ 7 ans il y a | 0

A répondu
クラウドコンピューティングについて:matlab onlineと parallel computing
ブラウザがある環境であればタブレットやスマートフォンなどどこからでもアクセスできる *MATLAB Online* は、以下ライセンスをお持ち、かつ MathWorks アカウントをお持ちの方は無料で使用できます。(保守契約が有効である必要があります) ...

environ 7 ans il y a | 5

| A accepté

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

environ 7 ans il y a | 3

A répondu
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...

environ 7 ans il y a | 1

| A accepté

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

environ 7 ans il y a | 4

| A accepté

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

environ 7 ans il y a | 2

| A accepté

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

environ 7 ans il y a | 3

| A accepté

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

environ 7 ans il y a | 5

| A accepté

A répondu
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/...

environ 7 ans il y a | 0

A répondu
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...

environ 7 ans il y a | 0

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

environ 7 ans il y a | 2

| A accepté

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

environ 7 ans il y a | 0

| A accepté

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

environ 7 ans il y a | 1

| A accepté

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

environ 7 ans il y a | 1

| A accepté

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

environ 7 ans il y a | 2

| A accepté

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

environ 7 ans il y a | 0

| A accepté

A répondu
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...

environ 7 ans il y a | 0

A répondu
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...

environ 7 ans il y a | 0

A répondu
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) ...

environ 7 ans il y a | 0

A répondu
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...

environ 7 ans il y a | 0

| A accepté

A répondu
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.

environ 7 ans il y a | 1

| A accepté

A répondu
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...

environ 7 ans il y a | 0

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

environ 7 ans il y a | 0

| A accepté

A répondu
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...

environ 7 ans il y a | 0

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

plus de 7 ans il y a | 0

A répondu
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...

plus de 7 ans il y a | 1

| A accepté

A répondu
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...

plus de 7 ans il y a | 0

| A accepté

Charger plus