MathWorks Support Team
MathWorks
Followers: 20 Following: 0
Statistics
RANK
8
of 295,410
REPUTATION
23,424
CONTRIBUTIONS
19,866 Questions
19,935 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
12,307
RANK
of 20,224
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,822
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
MacOS 15.1 にアップデートした後、MATLAB を起動すると、「アプリケーション"Dock"には"(null)"を開く権限がありません」というエラーが表示されるのはなぜですか?
このエラーは、macOS 15.1 上の Intel バージョンの MATLAB R2024a およびそれ以前のリリースで見られます。 Intel バージョンの MATLAB R2024b では見られません。 また、MATLAB の「ネイティブ Apple...
13 hours ago | 0
| accepted
Question
MacOS 15.1 にアップデートした後、MATLAB を起動すると、「アプリケーション"Dock"には"(null)"を開く権限がありません」というエラーが表示されるのはなぜですか?
今まで問題なく使用できていた MATLAB が MacOS Sequoia 15.1 にアップデートしたあと起動しようとすると次のエラーが表示されます。 ---------------------------------------------------...
13 hours ago | 1 answer | 0
1
answer「if」文でAND演算子を使用するにはどうしたらよいですか?
この問題は、size 関数がベクトルを返すことに起因しています: size([1 2 3]) ans = 1 3 代わりに、numel 関数を使用してください: if numel([1 2 3])==numel([4 5 6]) &a...
13 hours ago | 0
| accepted
Question
「if」文でAND演算子を使用するにはどうしたらよいですか?
次のコードを入力したところ: if size([1 2 3])==size([4 5 6]) & size([4 5 6])==size([7 8 9]) 'yes' else 'no' end MATLABのコードアナライザーか...
13 hours ago | 1 answer | 0
1
answerMATLABの構造体内のフィールドの存在を確認する関数はありますか?
MATLABには、構造体の階層全体、またはネストされた構造体を調べてフィールドが存在するかどうかを確認する関数はありません。'isfield' 関数はネストされた構造体の最上位レベルのみを調べます。他のレベルでフィールドが存在するかどうかを確認するには、以...
13 hours ago | 0
| accepted
Question
MATLABの構造体内のフィールドの存在を確認する関数はありますか?
'構造体'という特定の名前を持つ構造体が存在するかどうかを確認するには、'exist' 関数を使用します。また、構造体配列内にフィールドが存在するかどうかを確認するには、'isfield' 関数を使用します。しかし、私は構造体の中のどこかにフィールドが存在...
13 hours ago | 1 answer | 0
1
answerIs there a MATLAB function that can check if a field exists in a MATLAB structure?
There is no MATLAB function that examines every level of a structure of structures, or nested structure, to determine if a field...
13 hours ago | 35
| accepted
MATLAB をインストールする方法を教えてください。
MATLAB のインストール方法については、動画での紹介がございます。 How to Install MATLAB(日本語字幕) https://jp.mathworks.com/videos/how-to-install-matlab-152508358...
13 hours ago | 0
| accepted
MATLABでテーブルの列名を抽出するにはどうしたらよいですか?
「table」オブジェクトについて: 以下のようにテーブルを作成した場合を考えます。 LastName = ["Sanchez"; "Johnson"; "Li"; "Diaz"; "Brown"]; Age = [38; 43; 38; 40; 49]...
13 hours ago | 0
| accepted
Question
MATLABでテーブルの列名を抽出するにはどうしたらよいですか?
MATLABで特定のテーブルの列名を抽出する方法を教えていただけますか?
13 hours ago | 1 answer | 0
1
answerプロットに垂直線を追加するにはどうしたらよいですか?
MATLABでは、R2018b以降でこの機能が組み込まれています。 R2018b以降をお使いの場合は、xline や yline 関数を使用できます。例えば、x=5に垂直線を作成するには次のようにします。 xline(5) y=10に水平線を作成...
13 hours ago | 0
| accepted
Question
プロットに垂直線を追加するにはどうしたらよいですか?
指定したサンプルポイントに垂直線をプロットに追加する方法を教えていただけませんか?例えば、1x41の強度値ベクトルがあり、中央のサンプル(サンプル番号21)に垂直線を追加したいです。
13 hours ago | 1 answer | 0
1
answer凡例のフォントサイズを変更するにはどうしたらよいですか?
R2022a以降では、fontsize 関数を使用して、図全体や特定のオブジェクト(例えば凡例)のフォントサイズを変更することができます。フォントサイズを特定の数値に設定することもできますし、オブジェクト内のすべてのテキストのサイズを相対サイズを保ちながら...
13 hours ago | 0
| accepted
Question
凡例のフォントサイズを変更するにはどうしたらよいですか?
プロット内の凡例のラベルのフォントサイズを変更するにはどうすればよいですか?例えば、プロット内の「One」、「Two」、「Three」、「Four」のラベルのフォントサイズを大きくする方法を教えてください。 plot(rand(4)) lgd = leg...
13 hours ago | 1 answer | 0
1
answerマーカーに色を塗るにはどうしたらよいですか?
もしプロットにラインではなくマーカーのみを描画する場合、scatter 関数を使用して「filled」オプションを指定することで、塗りつぶされたマーカーを作成できます。 x = rand(1,50); y = rand(1,50); colors =...
13 hours ago | 0
| accepted
Question
マーカーに色を塗るにはどうしたらよいですか?
「Rainflow_input1.txt」というファイルを使用しています。 Rainflow_input1.txt 2つのプロットがあります。プロット2のマーカーを塗りつぶすにはどうすればよいでしょうか?現在、マーカーは空の状態です。 Input_Ma...
13 hours ago | 1 answer | 0
1
answer配列からゼロを取り除くにはどうしたらよいですか?
各行から1つのゼロを取り除き、ゼロ以外の要素で新しい行列を再構築するには、以下のコードを試してください。 a = [1 4 0 3; 0 1 5 5; 1 0 8 1; 5 4 4 0; 0 1 5 2] v = nonzeros(a') newmat ...
13 hours ago | 0
| accepted
Question
配列からゼロを取り除くにはどうしたらよいですか?
配列からゼロを取り除きたいと考えています。この配列には各行にちょうど1つのゼロが含まれています。例えば、以下の配列があります。 a = [1 4 0 3; 0 1 5 5; 1 0 8 1; 5 4 4 0; 0 1 5 2] この配列を次のよう...
13 hours ago | 1 answer | 0
1
answerHow can I log data on the host computer while my simulation is running on a Speedgoat target?
Refer to the following link to learn more about signal logging basics with Simulink Real-Time: https://mathworks.com/help/slreal...
1 day ago | 0
| accepted
How do I deactivate MATLAB?
If MATLAB is still installed To deactivate MATLAB:Launch MATLAB.Click on "Help" in the MATLAB toolstrip, right beneath the quest...
1 day ago | 1
| accepted
PyInstaller を使用して Python 用の MATLAB エンジン API をパッケージ化するにはどのようにしますか?
MATLAB Engine API パッケージをアプリに含めるには、以下の手順に従います。 1.PyInstaller の Python ターゲット ファイルを含むディレクトリに移動し、まだ存在しない場合は「hooks」という名前のディレクトリを作成します...
1 day ago | 0
| accepted
Question
PyInstaller を使用して Python 用の MATLAB エンジン API をパッケージ化するにはどのようにしますか?
Python 用の MATLAB Engine API を使用する Python アプリケーションをパッケージ化するために PyInstaller を使用しています。作成された実行可能ファイルには Python パッケージ「matlab」はバンドルされてい...
1 day ago | 1 answer | 0
1
answerWhat is Software Maintenance Service (SMS) and where can I find more information about it?
Software Maintenance Service (SMS) is an annual program offered to our customers that provides Technical Support, most recent so...
1 day ago | 0
| accepted
How do I force MATLAB R2024b to open documentation pages in the Help Browser?
As of MATLAB R2024b, the Help Browser has been deprecated. Documentation pages will now open in your system's default web browse...
3 days ago | 0
| accepted
Question
How do I force MATLAB R2024b to open documentation pages in the Help Browser?
I installed MATLAB R2024b and noticed that the documentation pages open in my web browser, not the integrated Help Browser used ...
3 days ago | 1 answer | 0
1
answerHow do I update MEX-files to use the large array handling API (-largeArrayDims)?
The addition of the large array handling API may require you to update your MEX-files. The reason that code changes are required...
3 days ago | 1
| accepted
トレンドマイクロ社製のセキュリティソフトウェアが常駐している環境で、Simulink や App Designer などの Web ベースのアプリケーションを使用できないのはなぜですか?
最近、一部の MATLAB ユーザー様のご環境下にて、特定の動作が問題になるとの報告をいただいています。問題となっている主な動作は、次のものです(ただし、これらに限定されません)。Simulink モデルを開くApp Designer を使用するアドオンエ...
3 days ago | 0
| accepted
特定のプロット上の一点にマーカーを追加するにはどうしたらよいですか?
マーカーを追加する方法は以下の通りです。点自体をプロットする方法: hold on % 現在の図にプロットを追加するため plot(x_pos, y_pos, 'r*') % (x_pos, y_pos) の位置に赤いアスタリスクを追加 プロッ...
4 days ago | 0
| accepted
Question
特定のプロット上の一点にマーカーを追加するにはどうしたらよいですか?
以下のプロットがあります。このプロット上で、特定の地点に赤い点を注釈として追加しました。この点にマーカーを追加するにはどうすればよいですか?
4 days ago | 1 answer | 0
1
answerWhy is "readtable" taking dimensions from first sheet in excel when using "opts"?
This is an intended behavior. If you do not provide the information about the sheet you want to import data from in the import o...
4 days ago | 0
| accepted