已回答
axis square としたグラフをprintでepsファイルとして出力するとy軸上の点が消える
最新版のR2016bで確認したところ同様の問題を再現することができなかったのですが、OpenGLを使用した際に同様の現象が起きることが報告されているようです。 R2014b以降のバージョンではデフォルトのレンダラがOpenGLになっており、それが原因...

8 years 前 | 3

已回答
mac10.9(Marvericks)にstudent versionR2013aがインストール出来ない
InsallForMacOSX のアイコンをクリックしても、何もエラーメッセージが出ずインストールが開始されない場合、いくつかの原因が考えられます。まずは以下の2点について確認してみてください。 1. ファイルの欠損 ダウンロードしたファイルが...

8 years 前 | 2

| 已接受

已回答
わたしはMATLAB & Simulink Student Versionを購入できますか?
現在、学生証の残存が6ヶ月以上という条件はありません。 学生の間は利用が可能です。 学生ではなくなった時点で、アンインストールを行う形になります。 学生版の場合、MathWorksのWebストアから購入する場合はクレジットカード決済のみになること...

8 years 前 | 2

| 已接受

已回答
Merge several histogras into a one single plot
You can get histogram plot information by gca (get current axis) of gcf (get current figure). Under Axis properties, Histogram...

8 years 前 | 1

已回答
how do I get the names of the attributes?
iris.dat in Fuzzy Logic Toolbox does not have class information (name of the attribute). So, you need to add class information b...

8 years 前 | 2

| 已接受

已回答
How do I colour my surface fits a specific colour?
Use <https://jp.mathworks.com/matlabcentral/fileexchange/7943 freezeColors in FileExchange> to hold the colormap. For fitted r...

8 years 前 | 1

已回答
Run Code on Parallel Cloud?
Similar to MDCS, set "Attached Files" or "AdditionalPaths" section in cluster profile. From MATLAB Desktop, go to Toolstrip ...

8 years 前 | 1

| 已接受

已回答
CNNでラベルの代わりにデジタル値で学習することはできますか?
はい、可能です。ただし、CNN の回帰の層はまだサポートされていません。現在の最新版 R2016b で回帰の CNN を行うには、あらかじめ学習した特徴量を再利用する転移学習という方法を使用します。 CNN特徴 + 分類 ですが、Computer V...

8 years 前 | 3

| 已接受

已提交


Intro to Optimization demo files (最適化による課題解決とパフォーマンス向上 デモファイル)
These are the files for the "Intro to Optimization" webinar

8 years 前 | 4 次下载 |

0.0 / 5
Thumbnail

已解决


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

8 years 前

已回答
how to write code for following equation to plot graph for M vs F with respect Q?
The easiest way is to use double for-loop q = 1; M = zeros(5,6); for Q = 1:1:5 f= 1; for F = 1:0.2:2 ...

8 years 前 | 1

已回答
Is it possible to show the x,y axis values for an image?
Get the handle of the axis and set the 'Visible' property to 'on' imshow('peppers.png'); h = gca; h.Visible = 'On';

8 years 前 | 4

| 已接受

已回答
散布図をプロットする時に対角線を表示する方法について ( How can I draw diagonal line in a scatter plot? )
最初に描いた散布図からxとyの表示範囲を取得した上でそれに合わせて対角線を描きます。 % 描画する変数の作成 X = rand(5,1)*rand(1); Y = rand(5,1)*rand(1); % 散布図の描画...

8 years 前 | 1

| 已接受

已回答
wavelet toolboxとparallel computing toolboxの併用について
Wavelet Toolbox は最新バージョン (R2016a) ではGPUに対応していません。 最新バージョンで、関数/Toolboxが GPU に対応しているかどうかは以下のページから確認することができます。 - Parallel Com...

8 years 前 | 2

| 已接受

已提交


気象庁 過去の気象データの取得 (Obtaining weather data in Japan)
気象庁の過去の気象データを csv ファイルとして保存するUIです。

8 years 前 | 1 次下载 |

0.0 / 5
Thumbnail

已提交


SVM Grid Search Apps
SVM grid search Apps

8 years 前 | 5 次下载 |

5.0 / 5
Thumbnail

已提交


Parallel Computing with MATLAB demo files (MATLABプログラムの並列・分散処理)
files for the webinar, "Parallel Computing with MATLAB" in Japanese

8 years 前 | 1 次下载 |

0.0 / 5
Thumbnail

已提交


Graphics Webinar demo (11/07/2014 JP)
demo files used in the graphics webinar

8 years 前 | 1 次下载 |

0.0 / 5
Thumbnail

已提交


Intro to MATLAB demo files (MATLAB入門 デモファイル)
files presented at MATLAB EXPO 2014 held in Tokyo - Intro to MATLAB

8 years 前 | 1 次下载 |

0.0 / 5
Thumbnail

频道


test channel
this is a test channel

10 years 前

已解决


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

11 years 前

已解决


サイコロを作ろう
1から6までの独立かつランダムな数値を返すような関数を作成しましょう。 例: >> [x1,x2] = rollDice(); と入力すると x1 = 5 x2 = 2 のような解を返します。

11 years 前

问题


チェッカーボードを作ろう
整数 n が与えられた時、以下の様な1と0を含むn×nの行列を作成しましょう。a(1,1) は1にする必要があります。 例: 入力 n = 5 出力 a が [1 0 1 0 1 0 1 0 1 0 ...

11 years 前 | 5 | 375 个解题者

已解决


チェッカーボードを作ろう
整数 n が与えられた時、以下の様な1と0を含むn×nの行列を作成しましょう。a(1,1) は1にする必要があります。 例: 入力 n = 5 出力 a が [1 0 1 0 1 0 1 0 1 0 ...

11 years 前

已解决


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

11 years 前

问题


サイコロを作ろう
1から6までの独立かつランダムな数値を返すような関数を作成しましょう。 例: >> [x1,x2] = rollDice(); と入力すると x1 = 5 x2 = 2 のような解を返します。

11 years 前 | 6 | 374 个解题者

已解决


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

11 years 前

已解决


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

11 years 前

已解决


Say something funny
Say something funny, or not. Your solution will be (fully automatically and objectively) scored based on how clever or funny ...

11 years 前

已解决


ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
MATLABでは,角括弧の中に要素を入れることで、ベクトルを作成できる。 x = [1 2 3 4] また次のようにも書ける(コンマはオプション)。 x = [1, 2, 3, 4] 問題:次のベクトルを出力する関数を作成せよ。...

11 years 前

加载更多