MATLAB
Spoken Languages:
English, Portuguese
Statistics
RANK
374
of 277,946
REPUTATION
201
CONTRIBUTIONS
7 Questions
100 Answers
ANSWER ACCEPTANCE
57.14%
VOTES RECEIVED
25
RANK
16,279 of 18,801
REPUTATION
4
AVERAGE RATING
0.00
CONTRIBUTIONS
2 Files
DOWNLOADS
19
ALL TIME DOWNLOADS
33
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Question
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 month ago | 1 answer | 0
1
answerHow 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...
3 months ago | 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...
3 months ago | 0
| accepted
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...
3 months ago | 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...
3 months ago | 0
Question
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...
3 months ago | 0 answers | 1
0
answersApp 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...
3 months ago | 1
| accepted
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...
3 months ago | 0
| accepted
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'...
3 months ago | 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...
3 months ago | 0
| accepted
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...
3 months ago | 1
| accepted
Submitted
Moderns apps templates created in Matlab (App Designer)
Templates of apps.
4 months ago | 8 downloads |

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...
4 months ago | 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...
4 months ago | 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.
5 months ago | 0
| accepted
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...
5 months ago | 0
| accepted
Solved
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 ...
6 months ago
Solved
Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...
6 months ago
How to center all of my data in my UItable in Appdesigner
Try this... % First issue: transform a numeric value to string, defining your format. LastName = {'Sanchez';'Johnson';'Li';'Di...
6 months ago | 1
A very fast way to convert numbers into datetime ?
You are right @Voss... I just run it 100 times and there's no difference at all. :( % Input: time = [ 2.02210270954498e+16; .....
6 months ago | 1
| accepted
How to move data from one table to another in checkbox form
Are you trying to represent tabular data under a tree?! If so, look solution below...
6 months ago | 1
How can I quantify the number of cells between specific values?
I don't know if my solution is the "simple way" that you request! :) randomMatrix = randi([0,1],10) meanZeros = zeros(height(r...
6 months ago | 1
How to enter user values into an existing matrix.
Try this... originalMatrix = randi(10,5); inputArray = zeros(5,1); for ii = 1:numel(inputArray) inputArray(ii) = input...
6 months ago | 0
Matlab App designer Tree and Edit Field
No, it's not possible using uitree. Maybe you could use uihtml, but I think you'll have a lot of work. I tried a solution for yo...
6 months ago | 1
uigetfile breaks modality in uifigures
What's Matlab version are you using?! I just test it in R2022b and it's working fine. See app attached. % app2 button callback ...
6 months ago | 0
Ordering vectors of numbers of type double and strings according to another vector
You could write a simple loop... string_1 = {'apples' 'pears' 'plums' 'oranges' 'peaches' 'grapes'}; vector_1 = [1 3 7 8 9 10]...
6 months ago | 0
How do I fix the loading bar while adding an axis on appdesigner?
Hummm... I'll try to list what worked for me when I had to deal with an issue like yours. Update my OS (old versions of Win10 a...
6 months ago | 0