Answered
複数のテキストデータから一つの散布図の作り方
Communication System Toolboxの関数 _scatterplot_ は実行毎に新しいFigureが作成されます。散布図を新規のFigureではなく、既存のFigureに追加する場合には、 scatterplot(x,n,o...

10 years ago | 1

Answered
how do I make scatterplot from many data sets.
See. https://jp.mathworks.com/matlabcentral/answers/304711-

10 years ago | 1

Answered
Matlab2016aが起動できなくなった[windows10]
MATLABのインストールフォルダごと消えてしまったということでしょうか。 matlab.exeが消えてしまうという現象は確認したことがありませんが、Windows側に原因がある場合にはMATLAB側からの修復は難しい可能性があります。再インストールも検...

10 years ago | 4

Answered
Replacing elements in an array
R=[1 2 1 2 2 2]'; R(R==2) = 4; See <http://blogs.mathworks.com/loren/2013/02/20/logical-indexing-multiple-conditions/ Lo...

10 years ago | 2

| accepted

Answered
Control histogram appearance: width of bars
_'BarWidth'_ option only applies to histograms of categorical data. Is your _FIBR_ categorical or numerical? The following is...

10 years ago | 1

| accepted

Answered
Mapping Toolboxをインストールするための手順はどのようにすればいいのでしょうか?
Mapping ToolboxはStudent版では提供されていませんが(詳細: <https://jp.mathworks.com/academia/student_version/add-ons.html Add-ons> ) <https://...

10 years ago | 2

| accepted

Answered
Passing additional inputs to gamultiobj
You can take advantage of properties of anonymous functions to define values for additional inputs. Suppose you have another ...

10 years ago | 2

| accepted

Answered
シンボリック変数を用いて解いた連立方程式の解の表示形式について
_double_ を使うとMATLAB 数値形式に変換できます。 expr = (1+sqrt(sym(5)))/2; expr = double(expr) <https://jp.mathworks.com/help/symbol...

10 years ago | 4

| accepted

Answered
How to change NumWorkers property in compiled applications?
Increasing the number of workers above the available physical cores is not highly recommended. Having said that, this doc page c...

10 years ago | 4

| accepted

Answered
多項式近似におけるダイアログボックスの場所について
英語表記の "Center and scale x data" に該当する部分になります。 <</matlabcentral/answers/uploaded_files/59860/dialogbox_basicfit.png>> p...

10 years ago | 5

| accepted

Answered
How to compare two input arguments of type table
If you want to compare two single values of the same type in the table variable, use {} instead of (), T{1,5} > T{1,6} ...

10 years ago | 4

| accepted

Answered
How to model graphically complex shapes in matlab?
I'd suggest that you generate a complex geometry using other CAD tool and exported it to STL if you want to import back to MATLA...

10 years ago | 1

Answered
Function index is a string, why?
The first input 'Fun' to the function _RegulaRaiz_ is 1x3 char, 'Fun'. So Fa = Fun(1) is f and, Fb = Fun(2) = u. Could you ...

10 years ago | 3

| accepted

Answered
クライアントマシンへのインストール
発生するError15は License Manager Error -15 でしょうか。 このエラーは、ライセンスマネージャが起動していない場合や、MATLABがライセンスマネージャとTCP/IPによる通信が正常にできない場合に発生することがあります。...

10 years ago | 3

Answered
ヒストグラムからノイズの算出方法
ここでの「ノイズ」はどう定義されますでしょうか。 ビン数に依存する指標ではありますが、ヒストグラムの近似曲線(確率密度関数?)からのずれということであれば、近似曲線のビンの中央での値との差で計算できます。 もしデータが正規分布かどうか見極めるという...

10 years ago | 3

Answered
Log Scaleの半透明な3D surf Graphの作成方法
R2014b以降のバージョンですと、古いグラフィックス ハードウェアまたは旧式のグラフィックス ドライバーに起因して問題が発生する場合があります。下記ドキュメンテーションページも参考にしてください。 <https://jp.mathworks.com...

10 years ago | 0

Answered
anova1を使い,多重比較でmultcompareを使ったのですが,出力引数のcが5列しか出ていません.
R2013b以前のバージョンでは5列で出力される仕様でしたが、MATLAB R2014aのバージョンから、出力引数cの6列目にp値が出力されるよう変更されました。

10 years ago | 2

Answered
評価版2016aが起動できない
<http://jp.mathworks.com/matlabcentral/answers/140155-why-do-i-receive-error-1731-during-activation Why do I receive error 1731 ...

10 years ago | 1

Answered
範囲を指定してヒストグラムからaverage, variance, skewnessの算出
まずは論理配列の使用をお勧めします。例えば変数 x から x>0 という条件を満たす要素だけを取り出して x_new という新しい変数を作る場合、 x_new = x(x>0); とのコマンドになります。x > 0 という条件式を x のイ...

10 years ago | 3

| accepted

Answered
ライブラリの関数コールする
ソースとなるCコードが手元にない共有ライブラリのSimulink上での呼び出し、またそのモデルのコード生成が可能かということでしょうか。 まず、前者に関しては <http://jp.mathworks.com/matlabcentral/ans...

10 years ago | 1

Answered
MATLAB Coder 試用版を取得しようとするとエラーが発生します
現在、MATLAB Coderに関しては、試用版を担当営業を経由して提供しているため、「MATLAB Coder 試用版の取得についてはお問い合わせください」との表示になります。 "Contact us"のボタンが機能しない場合は他のブラウザーから試...

10 years ago | 4

| accepted

Answered
RNNの学習において、多次元入力での学習は可能でしょうか?
例えば、X{1,1}=[0.8147; 0.8147] と行数を出力のそれと合わせることで、複数要素の時系列入力を使うことが出来ます。ドキュメンテーションの例ですと、 [X,T] = simpleseries_dataset; A = ce...

10 years ago | 3

| accepted

Answered
How can I simulate 2 materials in pde toolbox script?
Thanks for your clarification. As you have already made use of it, but sub-domain support is available for 2D problems, so yes y...

10 years ago | 0

| accepted

Answered
PDE Toolbox. Parabolic heat transfer: How to specify a forcing term to act only on the boundary?
It may not an elegant way. Since your boundary is defined in clear fashion, I think it's worth a try. Instead of f = @(...

10 years ago | 0

Answered
I'm looking to plot a rectangular pulse and triangula
Have you looked at stairs function? For discrete data, stem function could be a choice too. X = [0,1,2,3,4,5]; Y = ...

10 years ago | 0

Answered
How would I write a function that arranges a series of number by ascending order?
How's sort function? http://www.mathworks.com/help/matlab/ref/sort.html

10 years ago | 2

| accepted

Answered
Can relative and absolute tolerances be set for the solvepde function?
Yes you can through SolverOptions property of PDEModel. >> pdemodel = createpde pdemodel = PDEModel with propertie...

10 years ago | 0

Answered
how can i restrict the pixel values of an gray image between 20 and 240.
Have you looked at imadjust function from Image Processing Toolbox? It may help. http://www.mathworks.com/help/images/ref/im...

10 years ago | 0

Answered
I cannot use graph and digraph functions in matlab 2013b, how to fix it?
digraph and graph functions were introduced at R2015b. So a solution is to upgrade your MATLAB version to R2015b or later.

10 years ago | 2

Answered
How to find close values in matrix?
If you use R2015a or later, ismembertol function may help. ismembertol http://www.mathworks.com/help/matlab/ref/ismembertol....

10 years ago | 1

Load more