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

9年以上 前 | 3

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

9年以上 前 | 2

| 採用済み

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

9年以上 前 | 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...

10年弱 前 | 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...

10年弱 前 | 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...

10年弱 前 | 1

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

10年弱 前 | 1

| 採用済み

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

10年弱 前 | 3

| 採用済み

送信済み


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

10年弱 前 | ダウンロード 3 件 |

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...

10年弱 前

回答済み
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 ...

10年弱 前 | 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';

10年弱 前 | 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); % 散布図の描画...

10年弱 前 | 1

| 採用済み

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

10年弱 前 | 2

| 採用済み

送信済み


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

10年弱 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

送信済み


SVM Grid Search Apps
SVM grid search Apps

10年弱 前 | ダウンロード 3 件 |

5.0 / 5
Thumbnail

送信済み


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

10年弱 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

送信済み


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

10年弱 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

送信済み


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

10年弱 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

チャネル


test channel
this is a test channel

11年以上 前

解決済み


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...

約12年 前

解決済み


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

約12年 前

問題


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

約12年 前 | 5 | 401 個のソルバー

解決済み


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

約12年 前

解決済み


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...

約12年 前

問題


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

約12年 前 | 6 | 405 個のソルバー

解決済み


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

約12年 前

解決済み


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

約12年 前

解決済み


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

約12年 前

解決済み


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

約12年 前

さらに読み込む