Submitted


Interface between MATLAB App and Simulink
This file consists of necessary steps and settings to enable App Designer to control the inputs and displaying model values back...

4 years ago | 27 downloads |

Thumbnail

Answered
set a pic in GUI
Updated based on Adam's comment! Thanks for your feedback. --------------------------------------------------------------------...

4 years ago | 1

| accepted

Answered
Saving the plot after modifications in the GUI - Matlab
Hi Adam, In the below example, first you need to copy the UIAxes to the temporary figure. And then you can save it as *.png. f...

4 years ago | 0

| accepted

Answered
Logical expression not working with loop and if statement
Hello Maxence Boels, this is due to the inner for loop, which is causing problem. for n =1, the inner loop changes its values f...

4 years ago | 0

| accepted

Answered
Reading complex numbers from Excel
Step.1: Reading values from the excel sheet (see attachment). [num,txt,raw] = xlsread('imag_real.xlsx') Step.2: Apply a str2do...

4 years ago | 0

| accepted

Question


How to check if external program/software is installed using App
I developed an App which simulates the Simulink model. This simulink model requires another external program/software which need...

4 years ago | 1 answer | 0

1

answer

Answered
Plotting on .fig file (in new window if possible)
Here is an example: close all; MySavedPlot = open('MySavedPlot.fig'); figure(MySavedPlot) hold on x = linspace(-2*pi,2*pi);...

4 years ago | 0

Answered
How to use pop-up menu to control table in GUIDE?
hi chia yu li, here you can find such GUI. thanks Ankit

4 years ago | 0

Answered
Simulink modeling from the command line
you can use following commands: open_system({ 'model1name', 'model2name' }); set_param('model1name', 'StopTime', 'inf') set_p...

4 years ago | 0

Answered
how can i solve this eigenvalue equation?
hi using eig command: https://de.mathworks.com/help/matlab/ref/eig.html a=[1 2;5 6]; b=[3 6;7 8]; [V,D] = eig(a,b); Are yo...

4 years ago | 2

| accepted

Answered
Column Format in UI Table
hey, you can set the format of your table as follows using 'ColumnFormat' property. Are you looking for something like this? C...

4 years ago | 2

| accepted

Answered
How to change the length of the lines inside the legend?
Hello Sandeep, check this interesting file in FEX: https://de.mathworks.com/matlabcentral/fileexchange/58914-resizelegend-varar...

4 years ago | 0

Answered
How to change the order on vertical axis on a figure ?
hi, you could try this x = linspace(0,3*pi,200); y = cos(x) + rand(1,200); scatter(x,y) set(gca,'YDir','reverse')

4 years ago | 0

| accepted

Answered
how to delete cells in a cell array, such that it has the same length as one of my other arrays
There are different ways in which you can delete an element from your array Case 1: If you want to delete an specific element ...

4 years ago | 0

Answered
From spreadsheet in simulink ....How to deal with inf problem
hello, there is problem in your spreadsheet. I would like to confirm that if your time values are correct. You just need to ...

4 years ago | 0

| accepted

Answered
Assistance with contour plot?
Hello Claire, You should use contour to get the contour labels (Contours with Labels) Just have a look here: How to label the...

4 years ago | 0

Answered
Opening XLSX file and setting the variable type to double
Hello Konstantin, I have a question why don't you change the excel sheet value from NULL to 0? Could you please give a try to...

4 years ago | 1

Answered
Scaling color with selected axis data
Hello Aikaterini, Please try this out: % parameters x= [0:1:30]' ; y= linspace(0.1,10,length(x)) ; % function if (x <= ma...

4 years ago | 1

Answered
app designer linked to simulink
Hello Andrew, here is such an example: Simulink Model control via App Designer Check my answer in below link for how to read ...

4 years ago | 6

| accepted

Answered
How to read file in matlab GUI
Please don't forget to pre-allocate the loop variables According to your GUI and given input conditions, line(i)==6 and line(i)...

4 years ago | 0

Answered
Remove the border lines.
hello, you need to set the edgecolor property to none. x1=[1.3, 1.76]; y1=[271, 241]; [xx1, yy1] = meshgrid(x1, y1); z1=[3....

4 years ago | 2

Answered
How to Add selected values of Listbox in MATLAB GUI?
This is not the best way but a working solution! function listbox1_Callback(hObject, eventdata, handles) contents= cellstr(ge...

4 years ago | 0

| accepted

Answered
Graphing .m file returning blank figure
Hello Andre, There is problem in your code. You are not storing y values. function yout=euler1(t0,y0,tfinal,h,f) y=y0; yout...

4 years ago | 0

Answered
How do I remove leading characters from a string?
Hello Pruth, One possibility is to use extractBetween command. newStr = extractBetween(str,startPos,endPos) a = extractBetwee...

4 years ago | 1

Answered
Can we write plots in Excel
Hello Prakhar, Before asking question it is always beneficial to google it or check in MATLAB Central File Exchange. Please re...

4 years ago | 0

| accepted

Answered
How can i access elements of popup menu and use it in Push Button callbacks?
Hello Anurag, You can use either of the following solutions: Solution.1: As you are assigning the values to the workspace you ...

4 years ago | 0

| accepted

Answered
Use of Position property of figures
Hi Luca, using this command you can get the default figure position using get command for e.g. >> f = figure(1);plot(0);a = g...

4 years ago | 0

Answered
App Designer to control a Simulink Model and read back model data
Update 21.11.2019: Please check my submission in the below link: https://de.mathworks.com/matlabcentral/fileexchange/73613-int...

4 years ago | 1