Réponse apportée
MATLAB のライセンスファイルはどこにありますか?
ライセンスファイルの場所は、ライセンスの種類と OS によって異なります。 ライセンスの場所は、環境変数に保存することもできます。これは、ネットワークライセンスで一般的です。詳細については、以下のソリューションをご参照ください。 環境変数「LM_LICEN...

8 jours il y a | 1

| A accepté

Question


サブプロットとは何か、どのように使用するのですか?
一つのウィンドウに二つのグラフを表示したいのですが、どうすればよいでしょうか?また、ブロックとは何ですか?Simulinkを使用する際に、さまざまな要素やブロックを結合する方法についてもヒントを教えてください。

8 jours il y a | 1 réponse | 0

1

réponse

Réponse apportée
配列内の数値の位置を見つけるにはどうしたらよいですか?
配列の要素の値に対応する位置を返すには、find関数を使用することができます。例えば: a = [7 8 8 2 5 6]; linearIndices = find(a==8) この場合、linearIndicesには以下の値が格納されます: 2 ...

8 jours il y a | 0

| A accepté

Question


配列内の数値の位置を見つけるにはどうしたらよいですか?
ベクトル a = [7 8 8 2 5 6] がある場合、値8の位置をどのように計算すればよいですか?期待する結果は、2と3、または(1,2)と(1,3)です。

8 jours il y a | 1 réponse | 0

1

réponse

Réponse apportée
MATLABコードをPythonに変換するにはどうしたらよいですか?
MATLABは、Pythonを含む多くのプログラミング言語との双方向の統合を提供しています。MATLAB Engine API for Pythonを使用すると、PythonからMATLAB関数を呼び出すことが可能です。同様に、Python内の関数やオブジ...

8 jours il y a | 0

| A accepté

Question


MATLABコードをPythonに変換するにはどうしたらよいですか?
定量的微分位相コントラストイメージングのためのMATLABコードを持っていますが、そのコードは非常に大きく複雑です。しかし、私の勤務先の研究所ではMATLABの使用が許可されておらず、PythonとLabVIEWのみ使用可能です。そのため、MATLABコー...

8 jours il y a | 1 réponse | 0

1

réponse

Réponse apportée
How to convert the MATLAB code into the Python?
MATLAB provides two-way integration with many programming languages, including Python. The MATLAB Engine API for Python allows y...

8 jours il y a | 0

| A accepté

Réponse apportée
どのようにオフラインマシン用の MATLAB インストール ファイルを入手することができますか?
MATLAB のインストール ファイルを入手するには、リリースや要件に応じていくつかの方法があります。 ● ISO イメージとしての取得 ● インストーラーからの取得 (R2014a 以降) ​​​​​​​ ● ダウンロードページからの取得 (R2013...

8 jours il y a | 0

| A accepté

Réponse apportée
数値表示を科学的記数法から完全な数字に変更するにはどうしたらよいですか?
数値を完全な数字として表示するためには、以下のコマンドを使用します: format long または、sprintfを使用してフォーマットを指定することもできます。例えば: sprintf('%.15f', yourNumber) これにより、指定した...

8 jours il y a | 0

| A accepté

Question


数値表示を科学的記数法から完全な数字に変更するにはどうしたらよいですか?
MATLABで数値を科学的記数法ではなく、完全な数字として出力するにはどうすればよいですか?

8 jours il y a | 1 réponse | 0

1

réponse

Réponse apportée
グラフのタイトルを複数行に分けるにはどうしたらよいですか?
タイトルを複数行にするには、セル配列または文字列配列を使用する方法があります。配列の各要素がそれぞれ別の行のテキストに対応します。以下に、セル配列を使った方法を示します: plot(1:10) title({'You can do it','with a...

8 jours il y a | 0

| A accepté

Question


グラフのタイトルを複数行に分けるにはどうしたらよいですか?
グラフにタイトルを追加するとき、タイトルが長すぎて1行に収まらない場合、複数行に分ける方法はありますか? title( '1st line 2ndline' ) 通常のC/C++での改行シーケンスはここでは役に立たず、また以下のようにTEXの解釈を試みて...

8 jours il y a | 1 réponse | 0

1

réponse

Réponse apportée
配列の中から目的値に最も近い値を取り出すには?
ベクトルVの各要素に対して、ベクトルNの中で最も近い値を計算するには、以下のMATLABコードをお試しください。例として、以下のようなベクトルNとVを使用します: % 例のベクトル V = randi(10,[5 1]); N = randi(10,[5...

8 jours il y a | 0

| A accepté

Question


配列の中から目的値に最も近い値を取り出すには?
以下のような2つのベクトル(タイムスタンプ)があります。 V N 1375471092848936 1375473384440853 13754...

8 jours il y a | 1 réponse | 0

1

réponse

Réponse apportée
Windows でシステムパスを編集するにはどうすればよいですか?
Windows では、以下の方法で環境変数にアクセスすることができます。 Windows 11: 1.[スタート]ボタンを右クリックし、「システム」を選択します。 2. 画面中央の「関連リンク」にある「システムの詳細設定」をクリックします。 3.「システ...

8 jours il y a | 0

| A accepté

Réponse apportée
行列をCSVファイルとしてエクスポートするにはどうしたらよいですか?
csvwriteは推奨されていません。代わりに、行列データをCSVファイルとしてエクスポートするためには、writematrixを使用してください。 行列データをファイルに書き込む際には、関数呼び出しの第2引数でファイル名の一部としてファイルタイプを指定で...

8 jours il y a | 0

| A accepté

Question


行列をCSVファイルとしてエクスポートするにはどうしたらよいですか?
320x2 の double 型行列があり、それを以下の形式でCSVファイルに保存したいと考えています:  234,2 671,5 735,1 264,2 346,7 ... など この問題について調べたところ、「csvwrite」という関数を見つけまし...

8 jours il y a | 1 réponse | 0

1

réponse

Réponse apportée
How can I export a matrix as a CSV file?
"csvwrite" is not recommended. Use "writematrix" to export matrix data as a CSV file instead. When writing matrix data to a file...

8 jours il y a | 19

| A accepté

Réponse apportée
行列からNaN値を削除するにはどうしたらよいですか?
コードにはいくつか修正が必要な問題があります。以下に改善点を示します。fopenの使用について:fopenのドキュメントによると、fidは整数のファイル識別子であり、ファイルデータを含むものではなく、開かれたファイルへの参照に過ぎません。また、これはスカラ...

8 jours il y a | 0

| A accepté

Question


行列からNaN値を削除するにはどうしたらよいですか?
私の現時点のコードは以下の通りです。コードは最初の19行をスキップして20行目から開始するようにしています。しかし、例えば列が[10;0.04500;0;NaN;NaN]のようなデータからNaN値を削除する必要があります。NaNを削除するための行は実行され...

8 jours il y a | 1 réponse | 0

1

réponse

Réponse apportée
How can I remove all rows from a matrix which contain NaN values?
Use the following code to remove all rows which contain NaN values from a matrix A: >> A = [1, 2, 3; 4, NaN, 6; 7, 8, 9];...

8 jours il y a | 0

| A accepté

Question


How can I remove all rows from a matrix which contain NaN values?
How can I remove all rows from a matrix which contain NaN values? For example: >> A = [1, 2, 3; 4, NaN, 6; 7, 8, 9]; In...

8 jours il y a | 1 réponse | 0

1

réponse

Réponse apportée
CSVファイルをMATLABにインポートするためにはどうしたらよいですか?
CSV ファイルから MATLAB にデータをインポートするには、「readtable」関数を使用してください。この「readtable」関数は、ヘッダーを自動的に検出し、スキップすべき行数を判断します。 T = readtable('myfile.cs...

9 jours il y a | 0

| A accepté

Question


CSVファイルをMATLABにインポートするためにはどうしたらよいですか?
CSV ファイルから MATLAB にデータをインポートする必要があります。ただし、データには 3 列のヘッダー情報が含まれています。ヘッダーをスキップして、データだけを直接取得するにはどうすればよいでしょうか?

9 jours il y a | 1 réponse | 0

1

réponse

Réponse apportée
Why does my Simulink Real-Time model stop with an "Overload limit exceeded" error?
This message means that the target computer was unable to complete all of the calculations needed for a time step before the nex...

9 jours il y a | 0

| A accepté

Question


Why does my Simulink Real-Time model stop with an "Overload limit exceeded" error?
I have a Simulink model I want to deploy on a Speedgoat target machine. The model runs fine on the development computer, but whe...

9 jours il y a | 1 réponse | 0

1

réponse

Réponse apportée
What is license validation and how does validation work?
License validation is a feature of MATLAB licensing that allows MATLAB to check for license related updates every thirty days. T...

9 jours il y a | 2

| A accepté

Réponse apportée
How does Parallel Computing Toolbox handle Performance and Efficiency core usage?
Parallel Computing Toolbox can use both types of cores. MATLAB will rely on the operating system to schedule processes across th...

9 jours il y a | 1

| A accepté

Réponse apportée
Why will MATLAB not start up properly on macOS?
If MATLAB is not launching properly, and you are not receiving any License Manager Errors, then you may perform the following so...

9 jours il y a | 10

| A accepté

Réponse apportée
Why do I get an error like "cannot open shared object file: ps_windows_dllinject.dll" using polyspace-configure?
This is the symptom of a polyspace-configure issue related to a Cygwin's executable like "make.exe" or "tee.exe", executable use...

9 jours il y a | 0

| A accepté

Charger plus