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

13 Tage vor | 0

| akzeptiert

Frage


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

13 Tage vor | 1 Antwort | 0

1

Antwort

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

13 Tage vor | 35

| akzeptiert

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

13 Tage vor | 0

| akzeptiert

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

13 Tage vor | 0

| akzeptiert

Frage


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

13 Tage vor | 1 Antwort | 0

1

Antwort

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

13 Tage vor | 0

| akzeptiert

Frage


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

13 Tage vor | 1 Antwort | 0

1

Antwort

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

13 Tage vor | 0

| akzeptiert

Frage


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

13 Tage vor | 1 Antwort | 0

1

Antwort

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

13 Tage vor | 0

| akzeptiert

Frage


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

13 Tage vor | 1 Antwort | 0

1

Antwort

Beantwortet
配列からゼロを取り除くにはどうしたらよいですか?
各行から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 Tage vor | 0

| akzeptiert

Frage


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

13 Tage vor | 1 Antwort | 0

1

Antwort

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

14 Tage vor | 0

| akzeptiert

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

14 Tage vor | 1

| akzeptiert

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

14 Tage vor | 0

| akzeptiert

Frage


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

14 Tage vor | 1 Antwort | 0

1

Antwort

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

14 Tage vor | 0

| akzeptiert

Beantwortet
How to use "Optimize" task in Live Editor to solve discrete mixed integer problem-based optimization problem?
To solve such problems, the "Optimize" task in the Live Editor can be used. Since the solution in mapped to custom integers (e.g...

15 Tage vor | 0

| akzeptiert

Frage


How to use "Optimize" task in Live Editor to solve discrete mixed integer problem-based optimization problem?
How to use "Optimize" task in Live Editor to solve discrete mixed integer problem-based optimization problem? For example, I wou...

15 Tage vor | 1 Antwort | 0

1

Antwort

Frage


Why do standalone applications built using "Simulink Compiler" with "boolean" values yield unexpected results in MATLAB R2024b?
I have an app where I am using a button to switch on a light. I am creating a variable "newVar" based on the status of the butto...

15 Tage vor | 1 Antwort | 0

1

Antwort

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

15 Tage vor | 0

| akzeptiert

Frage


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

15 Tage vor | 1 Antwort | 0

1

Antwort

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

15 Tage vor | 0

| akzeptiert

Frage


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

15 Tage vor | 1 Antwort | 0

1

Antwort

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

15 Tage vor | 0

| akzeptiert

Frage


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

15 Tage vor | 1 Antwort | 0

1

Antwort

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

15 Tage vor | 1

| akzeptiert

Beantwortet
トレンドマイクロ社製のセキュリティソフトウェアが常駐している環境で、Simulink や App Designer などの Web ベースのアプリケーションを使用できないのはなぜですか?
最近、一部の MATLAB ユーザー様のご環境下にて、特定の動作が問題になるとの報告をいただいています。問題となっている主な動作は、次のものです(ただし、これらに限定されません)。Simulink モデルを開くApp Designer を使用するアドオンエ...

15 Tage vor | 0

| akzeptiert

Mehr laden