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

más de 9 años hace | 3

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

más de 9 años hace | 2

| aceptada

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

más de 9 años hace | 2

| aceptada

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

más de 9 años hace | 1

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

más de 9 años hace | 2

| aceptada

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

más de 9 años hace | 1

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

más de 9 años hace | 1

| aceptada

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

más de 9 años hace | 3

| aceptada

Enviada


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

más de 9 años hace | 2 descargas |

0.0 / 5
Thumbnail

Resuelto


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

más de 9 años hace

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

más de 9 años hace | 1

Respondida
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';

más de 9 años hace | 4

| aceptada

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

más de 9 años hace | 1

| aceptada

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

más de 9 años hace | 2

| aceptada

Enviada


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

más de 9 años hace | 1 descarga |

0.0 / 5
Thumbnail

Enviada


SVM Grid Search Apps
SVM grid search Apps

más de 9 años hace | 4 descargas |

5.0 / 5
Thumbnail

Enviada


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

más de 9 años hace | 3 descargas |

0.0 / 5
Thumbnail

Enviada


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

más de 9 años hace | 1 descarga |

0.0 / 5
Thumbnail

Enviada


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

más de 9 años hace | 1 descarga |

0.0 / 5
Thumbnail

Canal


test channel
this is a test channel

alrededor de 11 años hace

Resuelto


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

casi 12 años hace

Resuelto


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

casi 12 años hace

Problema


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

casi 12 años hace | 5 | 397 solvers

Resuelto


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

casi 12 años hace

Resuelto


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

casi 12 años hace

Problema


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

casi 12 años hace | 6 | 401 solvers

Resuelto


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

casi 12 años hace

Resuelto


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

casi 12 años hace

Resuelto


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

casi 12 años hace

Resuelto


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

casi 12 años hace

Cargar más