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

plus de 9 ans il y a | 4

| A accepté

Réponse apportée
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...

plus de 9 ans il y a | 4

| A accepté

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

plus de 9 ans il y a | 5

| A accepté

Réponse apportée
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} ...

plus de 9 ans il y a | 4

| A accepté

Réponse apportée
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...

plus de 9 ans il y a | 1

Réponse apportée
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 ...

plus de 9 ans il y a | 3

| A accepté

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

plus de 9 ans il y a | 3

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

plus de 9 ans il y a | 3

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

plus de 9 ans il y a | 0

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

plus de 9 ans il y a | 2

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

plus de 9 ans il y a | 1

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

plus de 9 ans il y a | 3

| A accepté

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

plus de 9 ans il y a | 1

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

plus de 9 ans il y a | 4

| A accepté

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

plus de 9 ans il y a | 3

| A accepté

Réponse apportée
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...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
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 = @(...

plus de 9 ans il y a | 0

Réponse apportée
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 = ...

plus de 9 ans il y a | 0

Réponse apportée
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

plus de 9 ans il y a | 2

| A accepté

Réponse apportée
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...

plus de 9 ans il y a | 0

Réponse apportée
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...

plus de 9 ans il y a | 0

Réponse apportée
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.

plus de 9 ans il y a | 2

Réponse apportée
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....

plus de 9 ans il y a | 1

Réponse apportée
How to plot a stacked histogram from multi text files
In the script above you call hist function [y, b] = hist(filename); which causes an error, whose message indicates that...

plus de 9 ans il y a | 0

Réponse apportée
How can I make a histogram from many text files?
Duplicate: http://jp.mathworks.com/matlabcentral/answers/302666- Assuming the situation where the all data would NOT fit in R...

plus de 9 ans il y a | 0

Réponse apportée
Switch elements of the 2nd and 3d dimension in 3D matrix
Have you tried permute function? http://www.mathworks.com/help/matlab/ref/permute.html I am guessing B = permute(A,[1,3,2...

plus de 9 ans il y a | 3

| A accepté

Réponse apportée
複数のテキストファイルからヒストグマムを作る方法を教えてください
1000以上のtext fileにあるデータを全てまとめて1つのヒストグラムを作成されたいとのこと、これはそれぞれのファイルからのデータを縦に異なる色で重ねたヒストグラムをイメージすればいいでしょうか?例: y = [2 2 3; 2 5 6; ...

plus de 9 ans il y a | 2

Réponse apportée
MATLABのR2009bで作成したプログラムをR2015aで動かすとscatter3を使った表示が異なります.何が問題でしょうか?
R2014bで刷新されたグラフィックスシステムの影響かもしれません。 http://jp.mathworks.com/help/matlab/graphics-changes-in-r2014b.html ダミーのデータでも大丈夫ですので、実際に問...

plus de 9 ans il y a | 3

Réponse apportée
How can I refine a subdomain in the PDE Toolbox mesh generation tool?
I assume your problem is in 2D, then refinemesh function accepts an extra input argument "it", that is interpreted as a list of ...

plus de 9 ans il y a | 2

| A accepté

Réponse apportée
逆行列を求める処理を高速に行いたいです
明示的に逆行列を求める必要はなく線形方程式 Ax = B を求める上では x = A\b がもっとも適切かと思います。 行列のサイズ・特徴にも依存しますが、Parallel Computing Toolbox の組み込み関数を使用したGPUによる並列処理...

plus de 9 ans il y a | 4

Charger plus