Réponse apportée
MATLAB GUI上でのコールバック関数操作
GUIのコールバックでもプロットは同じように動作すると思います。私の環境では、MATLABのコマンドウィンドウでもplotの行でmatlab.graphics.data.DataMap/addChannel の同じエラーが出ました。tiとy2がテーブル型に...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
スタンドアロンアプリケーションで配列を引数として渡す方法
ターミナルから入力される場合、数値ではなく文字列として扱われてしまうためだと思われます。文字列(char)だったら数値(numまたはdouble)に変更するコードを追加すれば大丈夫です。 なお、iは虚数を表す予約変数名でもあるので、ここではnと表記し...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Using MATLAB Engine API for Python
It's because engine.start_matlab launches a new MATALB session and there's no variable in workspace. You need to create a sessi...

plus de 4 ans il y a | 2

Réponse apportée
pythonから指定フォルダに存在するMATLABスクリプトを呼び出したい
addpathするか、起動時のオプション「-sd」を付けるかの方法があります。 triarea.mが C:\Code フォルダにあるとします。 (1) addpathする方法 import matlab.engine eng = matlab.en...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
APPdesingnerを使用した場合のアプリ間の数値の引き渡しについて
ドキュメント(マルチウィンドウ アプリでのデータ共有)が参考になると思います。 openExample('matlab/TopLevelMultiwindowAppExample','supportingFile','DialogAppExample'...

plus de 4 ans il y a | 1

Réponse apportée
全角文字と半角文字を判別する方法を教えていただきたいです。
半角カナも対象にする場合は、doubleでcharにキャストすると127を超えてしまうので、unicode2nativeでバイトに変換する方法が堅牢です。 Shift-JISだと半角が1バイト、全角が2バイトになるので、バイト数が1なら1、それ以外なら0...

plus de 4 ans il y a | 1

Réponse apportée
Appdesigner Importing Numerical Data via Notepad
After putting a breakpoint, it turns out that T is empty table. readtable tries to read the txt file with comma delimeter. S...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
エクセルシートの文字色を調べる
こちらの回答が参考になります。 Windows OS限定のやり方になりますが、actxserverというCOMインタフェースを使う方法で実現できます。 注意点としては、actxserverで立ち上げたExcelだとカレントフォルダがMATLABと違って...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
How to save a txt file through gui app designer ?
For creating .txt files, there are various ways including save (with '-ascii' option), writatable, writematrix, writecell and fo...

plus de 4 ans il y a | 0

Réponse apportée
I can't find matlab webapp server 'script' directory.
There are two versions of MATLAB Web App Server. (1) MATLAB Web App Server Product Requires server license Full functionali...

plus de 4 ans il y a | 1

Réponse apportée
C言語からMATLABdllを呼び出して、Cからdllへ画像を受け渡して、dllから結果画像を受け取る際に変数はどのように渡されているのでしょうか。
dllexample関数でimage配列にアクセスする際にaccess violationが発生しています。 image = mxCreateNumericArray(3, (const mwSize*)dims, mxUINT8_CLASS,0); ...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
図をpdfにて出力する際に生じる日本語の文字化けについて
Macの場合、exportgraphicsでPDFにするとフォントの種類によっては埋め込みがうまくいかないようです。R2021bでも同様の症状が発生しました。Windowsでは起こりませんでした。 2つワークアラウンドをご提示します。 (1) Fi...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
How to use importKerasNetwork in standalone executable.
importKerasNetworkのアドオンがコンパイル時にうまく含まれていないようです。 その場合、手動でサポートパッケージのファイルを追加することで解決できます。 アプリケーションコンパイラの「アプリケーションの実行に必要なファイル」の欄で「...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
C言語でBMP画像を読み込み、matlabで処理するDLLに引き渡して処理をしたい時、画像の渡すにはどうすればよいのですか?
ドキュメント(https://jp.mathworks.com/help/releases/R2020b/compiler_sdk/cxx/calling-a-shared-library.html)の「Call a C Shared Library fr...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
HTTPS commands with MATLAB
webread would be the solution. %% For turning on onUrl = 'https://myIPaddress/H'; data = webread(onUrl); %% For turning of...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Can MATLAB be run on Azure from a Mac?
Microsoft provides "Microsoft Remote Desktop for Mac" and it will be OK.

plus de 4 ans il y a | 0

Réponse apportée
colorbarの変更に関して
colorbarの配色(カラーマップ)はcolormap で指定できますが、デフォルトで用意されているjetとかturboとかのマップに赤色→黄色→緑色の配色は無いです。 ただ、RGBを設定して独自のカラーマップを作ることができます。例えば赤色→黄色→緑...

plus de 4 ans il y a | 2

Réponse apportée
How to call Matlab transfer function from Python using Matlab engine?
As this document describes, Python's list will be converted to cell array in MATLAB Engine. Simple way is to convert the list t...

plus de 4 ans il y a | 0

Réponse apportée
Using Database Toolbox Interface for MongoDB in a Matlab Web App
JDBC driver of Mongo DB might not be included in your package file. Aftere installing mlpkginstall file, the JDBC driver will b...

plus de 4 ans il y a | 1

Réponse apportée
Save struct with struct
save would be found under MATLAB_ROOT\toolbox\matlab\general\save.m. But as the warning said, you have another save.m under you...

plus de 4 ans il y a | 0

Réponse apportée
Can I use .aws/config file to provide AWS S3 credentials?
readtable checks AWS Credentials either environment variable "AWS_SHARED_CREDENTIALS_FILE" ".aws/credentials" file environme...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
App Designer _ PushButton Callback
Simple way is to add web function in ButtonPushed callback. % Button pushed function: Button function ButtonPushed(app, event)...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
【App Designer】ある区間のデータ数を記録するアプリの作成について
「== 演算子」と関数find の組み合わせで実現できそうです。 スピナーを2つ置いて、StartSpinnerの値が1列目の開始値のトリガー、EndSpinnerの値が2列目の終了値のトリガーになるようにしたサンプル(.mlappファイル)を添付します...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
Custom Geobasemap with ESRI map
The URL might be url = 'https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer/tile/${z}/${y}/${x}....

plus de 4 ans il y a | 0

Réponse apportée
set connection timeout in java for MPS client
5*6*1000 is 30000 milliseconds (=30 seconds). Are you sure you set 5*60*1000 ? public long getTimeOutMs() { log.info("MPS ...

plus de 4 ans il y a | 0

Réponse apportée
cellをcategaricalに変更する方法
「非セル配列オブジェクトにセル要素を代入しています。」のエラーは、labels{1,1}のところで起きています。 中括弧{}で要素にアクセスするのはセル配列だけできるのですが、labelsは2x1のcategorical配列で、セルにはなっていません...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
凡例の複数行化エラー:cell 型の値をインデックスとして使用できません。
コードのどこかにlegendという変数を定義していたり、legend.mというカスタムの関数を書いたりしていませんでしょうか? which legend -all を実行してみて、<MATLABインストールフォルダ>\toolbox\matlab\sc...

plus de 4 ans il y a | 1

Réponse apportée
バックスラッシュを入力したいが¥に変換される。
addpathのドキュメントを読むと、括弧の中身は文字ベクトル または string スカラーとなっています。 半角のシングルクォーテーション(')かダブルクオーテーション(")で括って、以下のように実行してみるとできると思います。 addpath(...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
Run a java program inside Matlab with a input file.
It might be better to read JavaFoil document. I'm not familiar with JavaFoil, but it seems that "Script" option allows input f...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
関数endclearに関するエラーの解決法
ドキュメントのコード例を確認しましたが、freezeWeightsの中身はendclearではなく、endだけになっていました。 function layers = freezeWeights(layers) for ii = 1:size(layer...

plus de 4 ans il y a | 2

| A accepté

Charger plus