답변 있음
how can I save the value of a text area from app designer into a file .txt?
Attached is a sample app designer file. If button is pressed, a number written in text area will be save as a text file. % But...

7년 초과 전 | 0

답변 있음
Matlab Engine による Cプログラムとの連携
Visual Studioのターゲットプラットフォームはx64になっていますか? x64にしてもエラーが出る場合、デバッグ時にengOutputBufferを入れてみると良いですよ。MATLAB上の画面出力が文字列として保存されますので、Cコード上でもp...

7년 초과 전 | 2

| 수락됨

답변 있음
i'm writing an app to read data from excel file and plot the data with matlab app designer, is there any example i can refer to
It's not Excel file, but MATLAB document has an Example of uigetfile and dropdown menu. You can also open this example by the ...

7년 초과 전 | 6

답변 있음
How do I download MatLab packages?
You can find "download" link on the center of the page you mentioned (URL). Direct link is http://sourceforge.net/projects/me...

7년 초과 전 | 0

답변 있음
When I open a images and add them into a class the db.mat shows only the latest image details and other image details are missing. Can you please explain what I have missed in the code?
I think you need to change try-cacth statetments. Leave only load db code. And I guess you need to convert charcter c to double ...

7년 초과 전 | 0

답변 있음
Can I generate a .NET dll that imports other .NET assembly?
Yes, you can use external .NET dll in compiled MATLAB function. For example, assume the name of external dll is 'dotNetExtern...

7년 초과 전 | 1

| 수락됨

답변 있음
Deep learning - AlexNet neural network re training.
Here is a transfer learning example using AlexNet. Did you check this?

7년 초과 전 | 2

| 수락됨

답변 있음
Problem using binScatterPlot plotting scores of PCA
As the document of binScatterPlot says, input of binScatterPlot should be tall arrays. I think your XtrainStandard is not a tall...

7년 초과 전 | 0

답변 있음
How to display an sql data Table in a uitable
From R2018a, we can display table array data in uitable. The following is an example of reading data from PostgreSQL and show i...

7년 초과 전 | 1

| 수락됨

답변 있음
creating App design control buttons programmically
I have two ideas. Idea 1: Creates buttons from the first but make the button invislble in a startup function. % Code that exec...

7년 초과 전 | 0

| 수락됨

답변 있음
Please help with this Java exception error!
It might be the same as this answer. The error occurs when MATLAB cannot access to MATLAB's preferences directory. Keep in mind...

7년 초과 전 | 0

답변 있음
Creating a C from from a Script
In order to compile, you need to make your script to function and make the parameters (S,V,X0,X1,X2,Zaterramento_ohms) as input ...

7년 초과 전 | 0

| 수락됨

답변 있음
lmgrd is not running: Cannot connect to license server system.
You need to restart lmgrd daemon by the following. /usr/local/MATLAB/R2015b/etc/lmstart If the issue still exists, you had be...

7년 초과 전 | 0

| 수락됨

답변 있음
MATLAB compilerで生成したスタンドアロンアプリケーションをlinux環境上で実行できません
LinuxでMATLAB Runtimeを使う場合は、 <https://jp.mathworks.com/help/compiler_sdk/cxx/mcr-path-settings-for-run-time-deployment.html#btnyt...

7년 초과 전 | 2

| 수락됨

답변 있음
Open bands from several MODIS scenes with a loop
I have two ideas. *1. Use for-loop* dataDir = '*.hdf'; listing = dir(dataDir); for ii=1:size(listing, 1) fn...

7년 초과 전 | 1

| 수락됨

답변 있음
スタンドアロンアプリケーションの処理結果を標準出力に出力する方法がわかりません
アプリケーションコンパイラではデフォルトでは標準出力を表示しないようになっているので、コンパイルする際にランタイム追加設定のパネルを広げ、「Windowsの実行コマンドシェル(コンソール)を表示しない」の *チェックを外して* コンパイルしてみてください。...

7년 초과 전 | 2

| 수락됨

답변 있음
Changable files in matlab compiled executable
How about the following steps? * Move the mexw64-file to outside of the current folder (where m file is located) * Compile t...

7년 초과 전 | 0

답변 있음
How can I send a file via Web Application
Users can upload their files by uigetfile and download result by uiputfile. Please keep in mind that uigetfile and uiputfile are...

7년 초과 전 | 5

| 수락됨

답변 있음
Webカメラの映像をuitab上に表示するにはどうすればよいですか?
uitabの中にuiaxesを作成し、その中にWebCamの画像を表示させる、という方法で実現できます。 f = uifigure; tabgp = uitabgroup(f,'Position',[10 10 500 400]); ...

7년 초과 전 | 3

| 수락됨

답변 있음
.NET assembly in c# not working properly
Do you want to use "classify" in Neural Network Toolbox (from R2018b, its name is changed to Deep Learning Toolbox)? There ar...

7년 초과 전 | 0

답변 있음
Error importing excel table into app designer table
In case of your Journals.csv, you don't need to use table2cell. Just setting a table as a value works. x = readtable(fullp...

7년 초과 전 | 3

| 수락됨

답변 있음
Trying to launch a MATLAB plot program from a .NET C# windows application
Suppose you have compiled MATLAB function (call "NameofMethod") to .NET assembly (call Visual) and got Visual.dll. I think you ...

7년 초과 전 | 0

답변 있음
How can I read the headers in complicated tiff files?
How about using LibTIFF library? Ref: <https://jp.mathworks.com/help/releases/R2017b/matlab/import_export/importing-images.h...

7년 초과 전 | 1

| 수락됨

답변 있음
How do I save data from a Web App into a local file ?
I know you're using R2018a, and this is just information. From R2018b, uigetfile and uiputfile are supported in WebApps, so you ...

7년 초과 전 | 2

답변 있음
Run within Matlab a written C# .exe program to obtain an output variable
By assigning two output variables, results of Console.WriteLine can be passed to the variable. In the following example, 9 will ...

7년 초과 전 | 4

| 수락됨

답변 있음
How to set up Netbeans and Matlab
As described in <https://www.mathworks.com/matlabcentral/answers/320234-using-java-api-gives-no-nativemvm-in-java-library-path#a...

7년 초과 전 | 0

답변 있음
Matlab to apahe Spark
You need to specify airlinesmall.csv path with MATLAB Root directory. For example, if MATLAB is installed in */usr/local/MATLAB/...

7년 초과 전 | 1

| 수락됨

답변 있음
Create a Java Package with MATLAB Code Error
This is due to file access permissions. In my case, I got the following error. C:\Program Files\makesqr\application>javac -...

7년 초과 전 | 0

| 수락됨

답변 있음
MATLAB Production Server to reduce startup time of Matlab standalone?
Standalone applications, which are created by MATLAB Compiler, launch MATLAB Runtime when execution is called. On the other hand...

7년 초과 전 | 0

| 수락됨

답변 있음
R2018aがインストールできません
<https://jp.mathworks.com/matlabcentral/answers/99650 こちらのQ&A>と同件の事象のようです。 * お使いのマシンがWindows 32bit OSに該当していないか確認する * ウィルス対策ソ...

7년 초과 전 | 2

더 보기