photo

MathWorks Support Team

MathWorks

Last seen: Today 2009 年からアクティブ

Followers: 20   Following: 0

統計

Feeds

表示方法

回答済み
How do I change the temp directory for the Update Installer from R2018b to R2022b?
The Update Installer reads the temp directory from java.io.tmpdir system property, and not from the TMP or TMPDIR variable. You ...

約21時間 前 | 0

| 採用済み

回答済み
MacOS 15.1 にアップデートした後、MATLAB を起動すると、「アプリケーション"Dock"には"(null)"を開く権限がありません」というエラーが表示されるのはなぜですか?
このエラーは、macOS 15.1 上の Intel バージョンの MATLAB R2024a およびそれ以前のリリースで見られます。 Intel バージョンの MATLAB R2024b では見られません。 また、MATLAB の「ネイティブ Apple...

約21時間 前 | 0

| 採用済み

質問


MacOS 15.1 にアップデートした後、MATLAB を起動すると、「アプリケーション"Dock"には"(null)"を開く権限がありません」というエラーが表示されるのはなぜですか?
今まで問題なく使用できていた MATLAB が MacOS Sequoia 15.1 にアップデートしたあと起動しようとすると次のエラーが表示されます。 ---------------------------------------------------...

約21時間 前 | 1 件の回答 | 0

1

回答

回答済み
「if」文でAND演算子を使用するにはどうしたらよいですか?
この問題は、size 関数がベクトルを返すことに起因しています: size([1 2 3]) ans = 1 3 代わりに、numel 関数を使用してください: if numel([1 2 3])==numel([4 5 6]) &a...

約21時間 前 | 0

| 採用済み

質問


「if」文でAND演算子を使用するにはどうしたらよいですか?
次のコードを入力したところ: if size([1 2 3])==size([4 5 6]) & size([4 5 6])==size([7 8 9]) 'yes' else 'no' end MATLABのコードアナライザーか...

約21時間 前 | 1 件の回答 | 0

1

回答

回答済み
MATLABの構造体内のフィールドの存在を確認する関数はありますか?
MATLABには、構造体の階層全体、またはネストされた構造体を調べてフィールドが存在するかどうかを確認する関数はありません。'isfield' 関数はネストされた構造体の最上位レベルのみを調べます。他のレベルでフィールドが存在するかどうかを確認するには、以...

約21時間 前 | 0

| 採用済み

質問


MATLABの構造体内のフィールドの存在を確認する関数はありますか?
'構造体'という特定の名前を持つ構造体が存在するかどうかを確認するには、'exist' 関数を使用します。また、構造体配列内にフィールドが存在するかどうかを確認するには、'isfield' 関数を使用します。しかし、私は構造体の中のどこかにフィールドが存在...

約21時間 前 | 1 件の回答 | 0

1

回答

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

約21時間 前 | 35

| 採用済み

回答済み
MATLAB をインストールする方法を教えてください。
MATLAB のインストール方法については、動画での紹介がございます。 How to Install MATLAB(日本語字幕) https://jp.mathworks.com/videos/how-to-install-matlab-152508358...

約21時間 前 | 0

| 採用済み

回答済み
MATLABでテーブルの列名を抽出するにはどうしたらよいですか?
「table」オブジェクトについて: 以下のようにテーブルを作成した場合を考えます。 LastName = ["Sanchez"; "Johnson"; "Li"; "Diaz"; "Brown"]; Age = [38; 43; 38; 40; 49]...

約21時間 前 | 0

| 採用済み

質問


MATLABでテーブルの列名を抽出するにはどうしたらよいですか?
MATLABで特定のテーブルの列名を抽出する方法を教えていただけますか?

約21時間 前 | 1 件の回答 | 0

1

回答

回答済み
プロットに垂直線を追加するにはどうしたらよいですか?
MATLABでは、R2018b以降でこの機能が組み込まれています。 R2018b以降をお使いの場合は、xline や yline 関数を使用できます。例えば、x=5に垂直線を作成するには次のようにします。 xline(5) y=10に水平線を作成...

約21時間 前 | 0

| 採用済み

質問


プロットに垂直線を追加するにはどうしたらよいですか?
指定したサンプルポイントに垂直線をプロットに追加する方法を教えていただけませんか?例えば、1x41の強度値ベクトルがあり、中央のサンプル(サンプル番号21)に垂直線を追加したいです。

約21時間 前 | 1 件の回答 | 0

1

回答

回答済み
凡例のフォントサイズを変更するにはどうしたらよいですか?
R2022a以降では、fontsize 関数を使用して、図全体や特定のオブジェクト(例えば凡例)のフォントサイズを変更することができます。フォントサイズを特定の数値に設定することもできますし、オブジェクト内のすべてのテキストのサイズを相対サイズを保ちながら...

約21時間 前 | 0

| 採用済み

質問


凡例のフォントサイズを変更するにはどうしたらよいですか?
プロット内の凡例のラベルのフォントサイズを変更するにはどうすればよいですか?例えば、プロット内の「One」、「Two」、「Three」、「Four」のラベルのフォントサイズを大きくする方法を教えてください。 plot(rand(4)) lgd = leg...

約21時間 前 | 1 件の回答 | 0

1

回答

回答済み
マーカーに色を塗るにはどうしたらよいですか?
もしプロットにラインではなくマーカーのみを描画する場合、scatter 関数を使用して「filled」オプションを指定することで、塗りつぶされたマーカーを作成できます。 x = rand(1,50); y = rand(1,50); colors =...

約21時間 前 | 0

| 採用済み

質問


マーカーに色を塗るにはどうしたらよいですか?
「Rainflow_input1.txt」というファイルを使用しています。 Rainflow_input1.txt 2つのプロットがあります。プロット2のマーカーを塗りつぶすにはどうすればよいでしょうか?現在、マーカーは空の状態です。 Input_Ma...

約21時間 前 | 1 件の回答 | 0

1

回答

回答済み
配列からゼロを取り除くにはどうしたらよいですか?
各行から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 ...

約21時間 前 | 0

| 採用済み

質問


配列からゼロを取り除くにはどうしたらよいですか?
配列からゼロを取り除きたいと考えています。この配列には各行にちょうど1つのゼロが含まれています。例えば、以下の配列があります。 a = [1 4 0 3; 0 1 5 5; 1 0 8 1; 5 4 4 0; 0 1 5 2] この配列を次のよう...

約21時間 前 | 1 件の回答 | 0

1

回答

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

2日 前 | 0

| 採用済み

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

2日 前 | 1

| 採用済み

回答済み
PyInstaller を使用して Python 用の MATLAB エンジン API をパッケージ化するにはどのようにしますか?
MATLAB Engine API パッケージをアプリに含めるには、以下の手順に従います。 1.PyInstaller の Python ターゲット ファイルを含むディレクトリに移動し、まだ存在しない場合は「hooks」という名前のディレクトリを作成します...

2日 前 | 0

| 採用済み

質問


PyInstaller を使用して Python 用の MATLAB エンジン API をパッケージ化するにはどのようにしますか?
Python 用の MATLAB Engine API を使用する Python アプリケーションをパッケージ化するために PyInstaller を使用しています。作成された実行可能ファイルには Python パッケージ「matlab」はバンドルされてい...

2日 前 | 1 件の回答 | 0

1

回答

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

2日 前 | 0

| 採用済み

回答済み
How to programmatically set "Average reference power" and "reference phase offset (rad)" parameters for Simulink "Constellation Diagram" block in the Communications Toolbox for MATLAB R2024b?
"Average reference power" and "reference phase offset (rad)" parameters cannot be programmatically modified as of MATLAB 2024b. ...

3日 前 | 0

| 採用済み

質問


How to programmatically set "Average reference power" and "reference phase offset (rad)" parameters for Simulink "Constellation Diagram" block in the Communications Toolbox for MATLAB R2024b?
I am unable to programmatically access "Average reference power" and "reference phase offset (rad)" parameters for Simulink "Con...

3日 前 | 1 件の回答 | 0

1

回答

回答済み
Why does "Record coverage for system under test" alters the test results in "Simulink Test Manager" in MATLAB R2024b?
If "Block Reduction" is ON and "Force Block Reduction Off" is enabled, block reduction becomes inactive when coverage is on. Thi...

3日 前 | 0

| 採用済み

質問


Why does "Record coverage for system under test" alters the test results in "Simulink Test Manager" in MATLAB R2024b?
For my model shown below, I have two test cases in my Test Suite. Both the test cases are identical except, Test Case 1 has "Rec...

3日 前 | 1 件の回答 | 0

1

回答

回答済み
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日 前 | 0

| 採用済み

質問


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日 前 | 1 件の回答 | 0

1

回答

さらに読み込む