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

8 dagar ago | 0

| accepted

Question


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

8 dagar ago | 1 answer | 0

1

answer

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

8 dagar ago | 0

| accepted

Question


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

8 dagar ago | 1 answer | 0

1

answer

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

8 dagar ago | 0

| accepted

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

8 dagar ago | 0

| accepted

Question


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

8 dagar ago | 1 answer | 0

1

answer

Answered
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 dagar ago | 19

| accepted

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

8 dagar ago | 0

| accepted

Question


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

8 dagar ago | 1 answer | 0

1

answer

Answered
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 dagar ago | 0

| accepted

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 dagar ago | 1 answer | 0

1

answer

Answered
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 dagar ago | 0

| accepted

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 dagar ago | 1 answer | 0

1

answer

Answered
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 dagar ago | 2

| accepted

Answered
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 dagar ago | 1

| accepted

Answered
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 dagar ago | 10

| accepted

Answered
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 dagar ago | 0

| accepted

Answered
ファイルの存在を確認するにはどうしたらよいですか?
R2017b以降のバージョンでは、isfile 関数を使用してファイルが存在するかどうかを確認することができます。以下に例を示します: if isfile(filename) % ファイルが存在する場合の処理 data = importd...

9 dagar ago | 0

| accepted

Question


ファイルの存在を確認するにはどうしたらよいですか?
importdata 関数を使用してテキストファイルからデータをインポートしようとしています。ファイルをインポートする前に、そのテキストファイルが存在するかどうかを確認する方法を知りたいです。もしファイルが存在しない場合には、カスタムのエラーメッセージを表...

9 dagar ago | 1 answer | 0

1

answer

Answered
インターネット環境がないコンピューターでどのように MATLAB をアクティベーションしインストールしますか?
インターネット環境がないコンピューター上にMATLABをインストールするためには、下記3つのアイテムを準備する必要があります。この手順はスキップすることができません。 1) MATLAB 製品をインストールするための製品ファイル 2) ファイル インスト...

9 dagar ago | 0

| accepted

Answered
インストールやアクティベーションに必要なユーザー名は、どのように取得しますか?
Individual ライセンスをインストールまたはアクティベーションする際には、ユーザー名が必要です。 ユーザー名を取得するには、以下の手順をご参照ください。 コマンドプロンプト / ターミナル ユーザー名を取得する最も簡単な方法は、コマンドプロンプ...

9 dagar ago | 0

| accepted

Answered
MathWorks製品のインストール時に「There was an error downloading product files」と表示され、「Failed to download .enc, retry # 1」となるのはなぜですか?
この問題は以下の要因によって引き起こされる可能性があります:アンチウイルスソフトウェアVPN/プロキシサーバーファイアウォールネットワーク接続の不良以前のインストールの失敗 アンチウイルスソフトウェア、VPN/プロキシサーバー、ファイアウォール このエラー...

9 dagar ago | 0

| accepted

Question


MathWorks製品のインストール時に「There was an error downloading product files」と表示され、「Failed to download .enc, retry # 1」となるのはなぜですか?
MathWorks製品をインストールする際に、「There was an error downloading product files」と「Failed to download .enc, retry # 1」というエラーが発生するのはなぜですか?例えば...

9 dagar ago | 1 answer | 0

1

answer

Answered
2次元上に円を描画したいのですが、どのようにすればよいですか?
関数としては提供されていませんが、円を構成する点を求め、それらを結ぶことで2次元上に円を描画することができます。 % 等間隔ベクトルの作成 t = linspace(0,2*pi,100); figure plot(sin(t),cos(t)) axis...

9 dagar ago | 0

| accepted

Answered
table を行列に変換する方法は?
table2array() 関数を使用します。また、テーブルがすべて数値で構成されている場合は、テーブル名の後に {:,:} を指定することでも変換できます。 mytable{:,:}

9 dagar ago | 0

| accepted

Answered
ベクトルから要素を削除する方法は?
以下の3つの方法を考えることができます。それぞれ少しずつ異なります。すべての要素が3に等しい場合を削除したい場合: b = a(a~=3); 第3要素を削除したい場合: b = a; b(3) = []; または: a = [2,3,1,...

9 dagar ago | 0

| accepted

Question


ベクトルから要素を削除する方法は?
皆さんこんにちは。ベクトルから要素を削除する方法を教えてください。例えば、ベクトル a=[1,2,3,4,5] から3を削除して a=[1,2,4,5] にしたいです。

9 dagar ago | 1 answer | 0

1

answer

Question


table を行列に変換する方法は?
バイナリ決定図を使用して、最小化プロセスでBoolean関数を処理するにはどうすればよいですか?

9 dagar ago | 1 answer | 0

1

answer

Answered
グラフのサイズを設定するにはどうしたらよいですか?
現在の図(gcf)に対して「Position」プロパティを設定してください。位置は「[x0 y0 幅 高さ]」の形式でベクトルとして指定します。「x0」と「y0」は、画面の左下隅から図の左下隅までの距離を定義します。デフォルトでは、位置はピクセル単位で...

9 dagar ago | 0

| accepted

Load more