Community Profile

photo

Eric Delgado


Anatel

Last seen: 1 día hace Con actividad desde 2021

Programming Languages:
MATLAB
Spoken Languages:
English, Portuguese

Estadísticas

All
  • Thankful Level 3
  • 5-Star Galaxy Level 1
  • GitHub Submissions Level 3
  • Personal Best Downloads Level 1
  • 6 Month Streak
  • First Submission
  • Knowledgeable Level 4
  • Solver
  • First Answer
  • First Review

Ver insignias

Content Feed

Ver por

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

alrededor de 1 mes hace | 0

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

alrededor de 1 mes hace | 0

Enviada


ccTools
MATLAB Custom AppDesigner's Components

3 meses hace | 8 descargas |

Thumbnail

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

4 meses hace | 0

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

6 meses hace | 0

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

9 meses hace | 1

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

9 meses hace | 0

Enviada


m2mlapp
Conversion from .M to .MLAPP (Matlab files)

10 meses hace | 3 descargas |

Thumbnail

Pregunta


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

11 meses hace | 1 respuesta | 0

1

respuesta

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

alrededor de 1 año hace | 0

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

alrededor de 1 año hace | 0

| aceptada

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

alrededor de 1 año hace | 0

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

alrededor de 1 año hace | 0

Pregunta


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

alrededor de 1 año hace | 1 respuesta | 1

1

respuesta

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

alrededor de 1 año hace | 1

| aceptada

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

alrededor de 1 año hace | 0

| aceptada

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

alrededor de 1 año hace | 0

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

alrededor de 1 año hace | 0

| aceptada

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

alrededor de 1 año hace | 1

| aceptada

Enviada


Moderns apps templates created in Matlab (App Designer)
Templates of apps.

alrededor de 1 año hace | 8 descargas |

Thumbnail

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

alrededor de 1 año hace | 0

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

alrededor de 1 año hace | 0

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

alrededor de 1 año hace | 0

| aceptada

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

alrededor de 1 año hace | 0

| aceptada

Resuelto


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

más de 1 año hace

Resuelto


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

más de 1 año hace

Resuelto


Inner product of two vectors
Find the inner product of two vectors.

más de 1 año hace

Resuelto


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

más de 1 año hace

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

más de 1 año hace | 1

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

más de 1 año hace | 1

| aceptada

Cargar más