답변 있음
MATLAB distributed computing server
if you're using mapreduce and want to run in Hadoop, you don't need Spark. There are two options. 1. Use MATLAB Parallel ...

대략 7년 전 | 0

답변 있음
How do I connect JDBC with compiled application?
Regarding your last comment, from Powershell and Command Prompt, number is passed to compiled MATLAB function as characters, so,...

대략 7년 전 | 0

| 수락됨

답변 있음
linuxでのライセンスファイル更新を行う際に、ライセンスマネージャーを起動させることができません。
こちらのリンクにあるとおり、Linuxでライセンスマネージャーを起動させる場合、 /var/tmp/lm_TMW.log のライセンスログファイルに「追記」されます。 今回のケースでは、以前ライセンスマネージャーを起動させていた際に出力されたlm_TMW...

대략 7년 전 | 0

| 수락됨

답변 있음
MATLAB MySQL Database connection error
In order to specify JDBC, add key-value pairs to database function (ref: document). conn = database('localdb','root','', 'Vendo...

대략 7년 전 | 0

| 수락됨

답변 있음
How to obtain the text of the selected radio button group in app designer?
I think you need to add assign an initial value to app.GratingPeriod. From Code Browser in Code View, click "+" button and add ...

대략 7년 전 | 0

| 수락됨

답변 있음
Loading data into function workspace
If a variable is assinged to output of load, the variable is struct (Ref: document). So, you need to extract an array from struc...

대략 7년 전 | 2

| 수락됨

답변 있음
Trying to load .mat file into App Designer and then graph it
You need to set file path from uigetfile then load it. [file,path] = uigetfile('*.mat', 'Select a File'); if isequal(file,0)...

대략 7년 전 | 1

| 수락됨

답변 있음
Undefined function or variable 'wordEncoding'.
wordEncoding is available in Text Analytics Toolbox from R2018b. Could you confirm your MATLAB version?

대략 7년 전 | 1

| 수락됨

답변 있음
problem in generating exe file while using mcc
It might be because the excel file is included in compiled standalone exe file. To avoid this, Move the excel file to a diffe...

대략 7년 전 | 0

답변 있음
Where does the compiler store any "files required for your application" such as a template Excel Workbook?
Files which were included in "Files required for your application to run" are to be included in a standalone exe file created by...

대략 7년 전 | 0

| 수락됨

답변 있음
Matlab doesn't open (it's installed and activated)
It might be because MATLAB's prefdir is corrupted. Please delete the following folders (previous prefdir) C:\Users\YOUR_USER...

대략 7년 전 | 36

| 수락됨

답변 있음
uitab copy one table from another?
I think creating an uitab, creating an uitable into uitab, then setting data into the uitable will work. % creat a new tab use ...

대략 7년 전 | 0

답변 있음
Licence errorr -9
License error 9 occurs when MATLAB is activated by different user account from the account you're currently using and here is an...

대략 7년 전 | 0

답변 있음
how to solve the license manager error 97 while starting up matlab
License error 97 means that MATLAB License Manager (MLM) cannot run. And here is an answer to license error 97.

대략 7년 전 | 0

답변 있음
Error in giving input to Imagedatastore
How about downloading an image using websave and then creating imageDatastore? url = 'http://192.168.43.1:8080/shot.jpg' ; fil...

대략 7년 전 | 1

답변 있음
is matlab production server included in education license
MATLAB Production Server is not included in Campus-Wide License (TAH License), but its EDU license is available. You can get a q...

대략 7년 전 | 0

| 수락됨

답변 있음
webcam/deep learning toolbox supported by which matlab version
USB Webcams support packages are available from R2014a, Deep Learning Toolbox (formerly Neural Network Toolbox until R2018a) is ...

대략 7년 전 | 0

| 수락됨

답변 있음
i want to add a waitbar
This example (in R2014a) might be useful and here is a sample code. You need to create waitbar before for loop and update inside...

대략 7년 전 | 1

| 수락됨

답변 있음
Neural Network in Matlab App Designer
Yes, Neural Network (both shallow and deep neural networks) works with applications created by AppDesigner both for training and...

대략 7년 전 | 5

| 수락됨

답변 있음
How to connect client application with Matlab Production Server.
Here is a documentation of MPS client samples for C++. In Visual Studio a few more things are needed. Change Solution Platform...

대략 7년 전 | 0

| 수락됨

답변 있음
スタンドアローンアプリケーションにするとurlreadで通信エラーが発生する
MATLABからではプロキシサーバー経由でGoogle Map APIにアクセスできていますが、コンパイルしたスタンドアロンアプリケーションではプロキシサーバーを見に行かないので通信に失敗しているのではないでしょうか。 こちらの回答の最後の段にあるように...

7년 초과 전 | 2

답변 있음
Matlab and Hadoop integration
Without your whole code (apart1.m), it would be difficult to investigate why the error occurs, but as far as I guess, it might b...

7년 초과 전 | 0

| 수락됨

답변 있음
MATLAB Compiler で作成したexeが正しく動作しない
コンパイルする際に、ランタイム追加設定の「Windowsの実行コマンドシェル(コンソール)を表示しない」のチェックを外してコンパイルしてみてください。デフォルトではセミコロン無しの変数や、dispの値がコマンドプロンプトに表示されない設定となっていますが、...

7년 초과 전 | 1

| 수락됨

답변 있음
Open and Close outlook from Matlab
I think you need to add mail.Send; to send email. In order to close and then open Outlook, %% Close Outlook Quit(h) delet...

7년 초과 전 | 0

답변 있음
mdce.bat not found
It's because mdce.bat is included in MATLAB Distributed Computing Server (not Parallel Computing Toolbox). If you need mdce, yo...

7년 초과 전 | 0

답변 있음
appdesigner button group problem
Enabled property is not valid for Button Group but valid for Button. So, app.Button.Enable = 'off' will work. %% Create UIFigur...

7년 초과 전 | 0

| 수락됨

답변 있음
python interface to MATLAB Runtime
As this document says, >>you can either install the Python engine before running your packaged application, as described in Ins...

7년 초과 전 | 0

| 수락됨

답변 있음
任意サイズの単位ベクトルの作り方
onesを使う方法が最も簡単だと思います。1行n列の単位ベクトルを作成したい時、ones(1, n)で作成できます。 例えばnが20の時はこんな感じです。 n = 20; a = ones(1, n); Ref: onesのドキュメント (R2...

7년 초과 전 | 3

답변 있음
How to use java.nio in MATLAB?
Here is two example of deleting a file using java.nio.file. %% Method1 str = fullfile(pwd, 'test1.txt' ); %jpath1 = java.nio....

7년 초과 전 | 2

| 수락됨

답변 있음
Within script function not working in parallel code
>>Although , the code works if i save the function separately? Yes, if the function is saved as another m file, the file will...

7년 초과 전 | 0

| 수락됨

더 보기