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

alrededor de 2 años hace | 1

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

alrededor de 2 años hace | 0

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

alrededor de 2 años hace | 0

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

alrededor de 2 años hace | 0

Respondida
How to create exe file from mlapp?
Are you going to allow the users of your app to add new songs or new images? If so, put those folders in "Files installed for yo...

alrededor de 2 años hace | 0

Respondida
How use a check box in a GUI
First of all, you have to save your "toggleHistory" function in a file "toggleHistory.m". And then you have to replace "history....

alrededor de 2 años hace | 0

Respondida
For loop using Struct data with multiple values per timepoint
I don't know if I understand your issue, but... uniqueTimePoints = unique(XY11.DNA.Timepoint); for ii = 1:numel(uniqueTimePo...

alrededor de 2 años hace | 0

Respondida
How can I implement the following function block
Just pass all the arguments to your function, not only the array "u". function output = NameOfYourFunction(m, I, u) argu...

alrededor de 2 años hace | 0

| aceptada

Respondida
Z must be a matrix, not a scalar or vector.
You have have a grid created by meshgrid, so you need a matrix to fill this grid. Not a vector... It is what it is! :) t=0:30;...

alrededor de 2 años hace | 0

Respondida
Is there a way to update input arguments from main app to dialogue app if the dialogue app is running in single instance?
Yes. Just create a PUBLIC property or a public function in your dialogue app and call it everytime you change something in your ...

alrededor de 2 años hace | 0

Respondida
How to resize panel in app Designer?
Unfortunately, Matlab still doesn't have a good approach to dealing with this issue. Maybe you can use a toolbar with predefined...

alrededor de 2 años hace | 0

Respondida
How do I implement surfc in app designer?
Try this... function ButtonPushed(app, event) x=-2*pi:0.2:2*pi; y=-2*pi:0.2:2*pi; [x,y]=meshgrid(x,y); ...

más de 2 años hace | 0

Respondida
Getting inputs from App designer and saving them at a mat file or .mfile
Hey... I made an app in R2021b showing how to keep the main info of selected buttongroup and listbox objects. You should use "Ta...

más de 2 años hace | 0

Respondida
Matlab App Designer Pop Up Figure
You can use "Tag" property... % Tabs creation UIFigure = uifigure("Position",[600 300 400 450]); TabGroup = uitabgroup(UIFigu...

más de 2 años hace | 0

Respondida
Union two matrix of nxn, how?
Try this... mdfl_dc_1 = [85 97 109 121 133 145 157 169 181; ... 43 0 0 0 33 0 0 0 0; ... ...

más de 2 años hace | 0

| aceptada

Respondida
How to separate points under a line in a scatter plot
Try this... % Data xData = Datax.x; yData = Datay.y; % Reference line: y = ax + b % Using your data, a = 200/2000 and b =...

más de 2 años hace | 1

| aceptada

Respondida
gets slightly off value when summing
It's float operation universe. :) p1 = 0.005; p2 = 0.0450; % Instead of: p1+p2 == 0.05 % Try this: abs(p1+p2-0.05) <= 1e...

más de 2 años hace | 1

| aceptada

Respondida
Array values assigned to for loop
Try this... t = [-0.5; 1.5811; -1.5811]; T = 1; for i = 1:numel(t) if t(i) > 0 & t(i) < T msg = 'edge does no...

más de 2 años hace | 0

Respondida
How do I write a function that alternates an output variable between 0 and 1 every 1 second?
Create a timer with its "UserData" property set to 0. And a timer function (you have to save it to a file) to switch this value ...

más de 2 años hace | 1

| aceptada

Respondida
Update content in sliceViewer without creating new sliceviewer object in parent uipanel (appdesigner)
Wow @Linus Olofsson... this plot visualization is super weird. It seems impossible to update it! A possible solution is to creat...

más de 2 años hace | 0

| aceptada

Respondida
Multilanguage support in AppDesigner GUI
Hey @Nikolay, you could use an excel file as a dictionary (or a json file) and you should fill "Tag" property of each object sub...

más de 2 años hace | 2

| aceptada

Respondida
Limit User Input to EditField Value in App Designer
It's not possible because there is no callback related to a trigger like that - there is no "EditFieldValueChanging", but only "...

más de 2 años hace | 0

| aceptada

Respondida
Power over the total bandwidth doesn't equal the sum of powers over the sub-bandwidths
You can't do those operations in "logarithm world". You should convert it to linear using db2pow (if power unit) or db2mag (if v...

más de 2 años hace | 0

Respondida
How to get the max value between two elements of two separate arrays?
Try this... a= [1,3,4,6]; b= [2,2,5,4]; max([a;b])

más de 2 años hace | 1

| aceptada

Respondida
How do I add a draw rectangle function to an image app?
Hey... you have to show your image in an uiaxes and create a handle to your ROI as property of the app, so you can draw your ROI...

más de 2 años hace | 0

| aceptada

Respondida
Take last n elements in vector
Try this... a = [1,2,3,4,5,6,7,8,9,10]; N = 3; % user_input range_a = a(end-N+1:end)

más de 2 años hace | 0

| aceptada

Respondida
splash screen for compiled application goes away before application launches
This an old question, but... (1) Unfortunately, there is no solution yet. I dealt with this by developing a splash screen app i...

más de 2 años hace | 2

Respondida
Index in position 1 is invalid Problem
Try this... x = [0,240,480]; y = [1200,0,0]; Fcn_AddThings = str2func('@(x,y) x.^2 - 2*y'); Fcn_AddThings(x, y) Fcn_AddTh...

más de 2 años hace | 0

Respondida
Unable to use UDP when using a standalone executable
Firewall. No doubt about it! :) Just add your app (not Matlab, but your deployed app) in "white list" of the firewall. See imag...

más de 2 años hace | 0

| aceptada

Respondida
Display one axes across multiple figures
No. you can't, but copyobj will do the job, right? And you can use addlistener to help you handle the update process of all your...

más de 2 años hace | 0

Cargar más