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

alrededor de 7 años hace | 0

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

alrededor de 7 años hace | 0

| aceptada

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

alrededor de 7 años hace | 0

| aceptada

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

alrededor de 7 años hace | 0

| aceptada

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

alrededor de 7 años hace | 0

| aceptada

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

alrededor de 7 años hace | 2

| aceptada

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

alrededor de 7 años hace | 1

| aceptada

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

alrededor de 7 años hace | 1

| aceptada

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

alrededor de 7 años hace | 0

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

alrededor de 7 años hace | 0

| aceptada

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

alrededor de 7 años hace | 36

| aceptada

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

alrededor de 7 años hace | 0

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

alrededor de 7 años hace | 0

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

alrededor de 7 años hace | 0

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

alrededor de 7 años hace | 1

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

alrededor de 7 años hace | 0

| aceptada

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

alrededor de 7 años hace | 0

| aceptada

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

alrededor de 7 años hace | 1

| aceptada

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

alrededor de 7 años hace | 5

| aceptada

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

alrededor de 7 años hace | 0

| aceptada

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

alrededor de 7 años hace | 2

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

más de 7 años hace | 0

| aceptada

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

más de 7 años hace | 1

| aceptada

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

más de 7 años hace | 0

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

más de 7 años hace | 0

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

más de 7 años hace | 0

| aceptada

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

más de 7 años hace | 0

| aceptada

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

más de 7 años hace | 3

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

más de 7 años hace | 2

| aceptada

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

más de 7 años hace | 0

| aceptada

Cargar más