Programming Languages:
MATLAB
Spoken Languages:
English, Portuguese
MATLAB
Spoken Languages:
English, Portuguese
統計
All
Feeds
回答済み
How do I properly embed custom font in a web app developed in App Designer?
Hi @Osborn, you have to edit the webapps.config file of the MATLAB WebServer, including the possibiity to execute inline code. T...
How do I properly embed custom font in a web app developed in App Designer?
Hi @Osborn, you have to edit the webapps.config file of the MATLAB WebServer, including the possibiity to execute inline code. T...
2ヶ月 前 | 0
回答済み
whats wrong in the for loop in my app?
My first piece of advice is: try to assign meaningful names to your applications. Names like 'app2', 'app3', and 'visualiserings...
whats wrong in the for loop in my app?
My first piece of advice is: try to assign meaningful names to your applications. Names like 'app2', 'app3', and 'visualiserings...
6ヶ月 前 | 0
回答済み
App designer, run sub app in parallel
I think that the answer that you are looking for is here: https://www.mathworks.com/help/matlab/ref/parallel.pool.dataqueue.html...
App designer, run sub app in parallel
I think that the answer that you are looking for is here: https://www.mathworks.com/help/matlab/ref/parallel.pool.dataqueue.html...
6ヶ月 前 | 0
回答済み
App designer app calls sub apps, better to leave as .mlapp or compile each one to .exe?
Yes, there's a significant difference! Keeping the files as .MLAPP means only one session of the MATLAB Runtime will run on the ...
App designer app calls sub apps, better to leave as .mlapp or compile each one to .exe?
Yes, there's a significant difference! Keeping the files as .MLAPP means only one session of the MATLAB Runtime will run on the ...
6ヶ月 前 | 0
| 採用済み
回答済み
uitable not showing Data after deploying it with application compiler
It seems to be a rendering issue... perhaps MATLAB is performing multiple tasks simultaneously, which results in failing to trig...
uitable not showing Data after deploying it with application compiler
It seems to be a rendering issue... perhaps MATLAB is performing multiple tasks simultaneously, which results in failing to trig...
8ヶ月 前 | 0
回答済み
Can i use a class file which is created outside the app designer code window?
Hey... notice that the AppDesigner code you're editing is a class. And then, you can't define a class directly within the code o...
Can i use a class file which is created outside the app designer code window?
Hey... notice that the AppDesigner code you're editing is a class. And then, you can't define a class directly within the code o...
8ヶ月 前 | 0
回答済み
Drawing ROI in app designer produces error after using drawrectangle more than one time
I had the same warning message "Warning: Setting the "KeyPressFcn" property is not permitted while this mode is active.". It's a...
Drawing ROI in app designer produces error after using drawrectangle more than one time
I had the same warning message "Warning: Setting the "KeyPressFcn" property is not permitted while this mode is active.". It's a...
10ヶ月 前 | 0
回答済み
Matlab uitable column font size using html not working
ccTools provides customization of a lot of components (including the header of an uitable). See example in page 15 of the doc. ...
Matlab uitable column font size using html not working
ccTools provides customization of a lot of components (including the header of an uitable). See example in page 15 of the doc. ...
約1年 前 | 0
回答済み
App Designer: Format headings on uitable
Hey @Samuel Thompson and @Ramiro Massol, I am not sure if it is still an issue to you guys, but I wrote ccTools, a lib that tur...
App Designer: Format headings on uitable
Hey @Samuel Thompson and @Ramiro Massol, I am not sure if it is still an issue to you guys, but I wrote ccTools, a lib that tur...
1年以上 前 | 1
回答済み
How to change UITable Row/Column header font size?
Hey @Nicholas Fugal, @Tobias Seidler and @Nikolaus Koopmann: I am not sure if it is still an issue to you guys, but I wrote ccT...
How to change UITable Row/Column header font size?
Hey @Nicholas Fugal, @Tobias Seidler and @Nikolaus Koopmann: I am not sure if it is still an issue to you guys, but I wrote ccT...
1年以上 前 | 0
質問
Avatar of a custom AppDesigner component created in Matlab
I created a custom AppDesigner component, but when I open an app with it, Matlab shows this warning: Warning: Unable to capture...
1年以上 前 | 1 件の回答 | 0
1
回答回答済み
How label data points using text within a for loop
It seems that you have to create a custom data tips... rawData = table([-13;-30], [-39; -39], ["ID 1"; "ID 2"], 'VariableNames...
How label data points using text within a for loop
It seems that you have to create a custom data tips... rawData = table([-13;-30], [-39; -39], ["ID 1"; "ID 2"], 'VariableNames...
1年以上 前 | 0
回答済み
How can I differentiate in app designer?
You missed the string to symbolic expression convertion... % Instead of: f = app.FxEditField.Value; % Try: f = str2sym(app...
How can I differentiate in app designer?
You missed the string to symbolic expression convertion... % Instead of: f = app.FxEditField.Value; % Try: f = str2sym(app...
1年以上 前 | 0
| 採用済み
回答済み
App Designer help with uitable
Why do you have to store in the workspace the edited table so that the new values can be used in the calculation?! Do you have a...
App Designer help with uitable
Why do you have to store in the workspace the edited table so that the new values can be used in the calculation?! Do you have a...
1年以上 前 | 0
回答済み
how can i plot this
Try this... x1 = -2*pi:.01:0; x2 = .01:.01:2*pi; y1 = [sin(x1).^2, sin(x2).^3]; y2 = [cos(x1).^3, cos(x2).^2]; plot([x1...
how can i plot this
Try this... x1 = -2*pi:.01:0; x2 = .01:.01:2*pi; y1 = [sin(x1).^2, sin(x2).^3]; y2 = [cos(x1).^3, cos(x2).^2]; plot([x1...
1年以上 前 | 0
質問
What is the instrfind function equivalent for tcpclient objects?
Mathworks will remove tcpip and visa, replacing it with tcpclient and visadev. It's common the use of instrfind to find the tcpi...
1年以上 前 | 1 件の回答 | 1
1
回答回答済み
App designer and runtime compiler problem for creating exe file
I think you should download Runtime directly from your Matlab. Matlab itself will map the runtime installer path and embed it in...
App designer and runtime compiler problem for creating exe file
I think you should download Runtime directly from your Matlab. Matlab itself will map the runtime installer path and embed it in...
1年以上 前 | 1
| 採用済み
回答済み
how to create a figure that includes a table
Yeah... just create an uitable. Try this... number=[1;2;3;4;5]; data=[34;39;41;22;19]; subData=[0.5;0.7;0.9;1;1.1]; answer=t...
how to create a figure that includes a table
Yeah... just create an uitable. Try this... number=[1;2;3;4;5]; data=[34;39;41;22;19]; subData=[0.5;0.7;0.9;1;1.1]; answer=t...
1年以上 前 | 0
| 採用済み
回答済み
Error using AppDesigner attempting to output to a TextArea
@Adam Graf, you don't really need this loop. Try this... mnr = {'Eric'; 'Marina'}; diagnosis = {'Lowback Pain'...
Error using AppDesigner attempting to output to a TextArea
@Adam Graf, you don't really need this loop. Try this... mnr = {'Eric'; 'Marina'}; diagnosis = {'Lowback Pain'...
1年以上 前 | 0
回答済み
Directorry for Saving Settings from App Designer
Just create a property named "RootFolder" and put the lines below in the startup of your app. The property app.RootFolder will...
Directorry for Saving Settings from App Designer
Just create a property named "RootFolder" and put the lines below in the startup of your app. The property app.RootFolder will...
1年以上 前 | 0
| 採用済み
回答済み
Do you need to install standalone applications?
You made two questions: I was wondering if this is necessary? No, it's not. I think some of my colleagues that have used my co...
Do you need to install standalone applications?
You made two questions: I was wondering if this is necessary? No, it's not. I think some of my colleagues that have used my co...
1年以上 前 | 1
| 採用済み
送信済み
Moderns apps templates created in Matlab (App Designer)
Templates of apps.
1年以上 前 | ダウンロード 5 件 |
回答済み
Plot unformatted when window size is changed - APP Designer
Meu amigo que também escreve em portugês, acho que posso responder em português, correto? Cara... a forma mais simples seria col...
Plot unformatted when window size is changed - APP Designer
Meu amigo que também escreve em portugês, acho que posso responder em português, correto? Cara... a forma mais simples seria col...
1年以上 前 | 0
回答済み
Reset axes in Matlab App Designer
You shouldn't clear the axes because it's gonna turn down the efficiency of your app. Just create a "startup" for the plot and a...
Reset axes in Matlab App Designer
You shouldn't clear the axes because it's gonna turn down the efficiency of your app. Just create a "startup" for the plot and a...
1年以上 前 | 0
回答済み
How to have a chain of inputs when changing the drop-down menu in MATLAB APP Designer?
Just create a callback to this main drop down to control the visibility of your objects... see app attached.
How to have a chain of inputs when changing the drop-down menu in MATLAB APP Designer?
Just create a callback to this main drop down to control the visibility of your objects... see app attached.
1年以上 前 | 0
| 採用済み
回答済み
for loop to while loop
Try this... x=16; X=[0,10,15,20,22.5,30]; Y=[0,227.04,362.78,517.35,602.97,901.67]; D=length(X); % WHILE LOOPS i=1; whi...
for loop to while loop
Try this... x=16; X=[0,10,15,20,22.5,30]; Y=[0,227.04,362.78,517.35,602.97,901.67]; D=length(X); % WHILE LOOPS i=1; whi...
1年以上 前 | 0
| 採用済み
解決済み
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
2年弱 前