Enviada


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

más de 4 años hace | 27 descargas |

Thumbnail

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

más de 4 años hace | 1

| aceptada

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

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

| aceptada

Pregunta


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

más de 4 años hace | 1 respuesta | 0

1

respuesta

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 2

| aceptada

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

más de 4 años hace | 2

| aceptada

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

más de 4 años hace | 0

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

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

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

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

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

más de 4 años hace | 1

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

más de 4 años hace | 1

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

más de 4 años hace | 6

| aceptada

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

más de 4 años hace | 0

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

más de 4 años hace | 2

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

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

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

más de 4 años hace | 1

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

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

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

más de 4 años hace | 1