Respondida
Points selection and zoom
Do you mean using [x y] = ginput(2); for instance? If so the coordinates should not be affected by the zoom, they would ...

casi 10 años hace | 0

| aceptada

Respondida
2 axes in GUI, permanently set the max and min values of the X and Y Coordinates.
To manually set the x and y-limits of an axes you can use this command: set(handles.axes1,'XLim',[0 300],'YLim',[0 300]); ...

casi 10 años hace | 0

Respondida
Controlling a ListBox's items from a PopupMenu
Yes. In the popup menu callback you can edit what appears in the Listbox using its handles and "string" property. The simpler wo...

casi 10 años hace | 0

Respondida
Issue with GUI editbox callback
You need to "share" the data between the different callbacks of your GUI, otherwise each callback does not know what is in other...

casi 10 años hace | 0

Respondida
I need program (codes) which take a video directly and extract frames in multiple defined times ??
If you know beforehand which frames you want to keep then store them in a vector. Let's say your movie is in a cell array, then ...

casi 10 años hace | 0

Respondida
How to delete a component in a listbox?
You do pretty much the same thing as before, i.e. modify the string array and put it back in the listbox with the set(...) comma...

casi 10 años hace | 0

| aceptada

Respondida
Working with Cell Array, Indexing
When you say: _However different images won't necessarily be 44. They could be nx1_ do you mean that some stacks will contain 44...

casi 10 años hace | 0

Respondida
Altering CT Volume voxel values in Matlab
It looks like when you use this line: Vol(Vol(:,:,p) > 0) = 65535 you are in fact referring to a 2D matrix correspondi...

casi 10 años hace | 0

| aceptada

Respondida
How to read a value of popup inside its callback
Maybe using setappdata and getappdata? You could store your structure and retrieve it among the callbacks of your GUI. eg. ...

casi 10 años hace | 0

Respondida
function use in GUI returned values
You might need to use Dx = str2num(Dx) before calling the function is it possible?

casi 10 años hace | 0

Respondida
Tweak legend entries without creating a new legend
Maybe assign a handle to your legend in the first place, eg hLegend = legend(...); and then change the String property w...

casi 10 años hace | 0

Respondida
Gaussian distributed random numbers
What if you generate some random numbers (here 100) with normal distribution, mean of 0 and std dev of 1: R = normrnd(0,1,1...

casi 10 años hace | 0

Respondida
Create matrix with double rows of [-1 1]
Simple answer: clear all clc A = zeros(8,4) for i =2:2:size(A,1) A(i-1,i/2) = (i/2)-1; A(i,i...

casi 10 años hace | 0

| aceptada

Respondida
adding a space or two after the output
I don't think you can with "disp"; or at least I don't see how to check it. An alternative would be to use sprintf: A = spr...

casi 10 años hace | 1

Respondida
Clear Strings in a PopUpMenu
You can control what appears in the popup menu by using a cell array containing the strings you want to display. For instance...

casi 10 años hace | 1

| aceptada

Respondida
Where can SSIFiBo Toolbox be downloaded ?
It looks like it is based on a published paper in the journal Soil Dynamics and Earthquake Engineering: <http://www.sciencedi...

casi 10 años hace | 0

| aceptada

Respondida
Passing variable filename to movie2avi
Maybe try this: fname = inputdlg('Enter Filename without extension','Input'); name = strcat(fname,'.avi'); movie2avi(...

casi 10 años hace | 0

| aceptada

Respondida
For Loop Not Working??
That is very strange; the default increment for for-loops is 1 so you should not have to add the TSR = TSR+i. By the way is it r...

casi 10 años hace | 1

Respondida
Placing a title for multiple plots in a for loop
You can use sprintf to format the title within the loop, for instance you could store all your title in a cell array for future ...

casi 10 años hace | 0

| aceptada

Respondida
Subtract one element from the following inside a loop
I rearranged a bit your code so it looks like this: clear all clc pres = [99 100 10 20]; presdiff = cell(1,s...

casi 10 años hace | 0

Respondida
Help needed to write a rectangle bounding box on an image ...
You can use "getframe" to get the image currently displayed in your figure/axes, hence it would save your image with the box. ...

casi 10 años hace | 0

| aceptada

Respondida
How to annotate specific axes in a GUI
It might sound trivial, but what if you set the axis in which you want to add text the "current axis" just before actually placi...

casi 10 años hace | 0

Respondida
symbols in axes titles in .fig
Do you mean in GUIDE? If so double click on the axes and the inspector should pop up, then you can change the axes properties. I...

casi 10 años hace | 0

| aceptada

Respondida
Explain this one line of code
I think this ensures that random numbers generated from different calls are all different since you use the current date/time in...

casi 10 años hace | 0

Respondida
Use slider for live updating of threshold on 2D contour plot?
My best guess would be to add a listener object inside your slide bar Create function. For instance you could add this line: ...

casi 10 años hace | 2

| aceptada

Respondida
Cell Array referencing question
Actually B contains a 1x2 double and it contains only 1 element (a 1x2 vector) whereas A contains 2 elements, i.e. 2 1x1 vectors...

casi 10 años hace | 0

Respondida
How I can multiply 2 variables without losing precision
Try this: a= 378979003; b= 1.443e-5; format long a*b ans = 5.468667013290000e+03

casi 10 años hace | 1

Respondida
How can I remove Input Variable Not Used Warning?
If you want to disable all warnings you might want to use this line: warning('off','all'); But Robert's answer does seem...

casi 10 años hace | 0

Respondida
finding intersection point between a scatter and vertical lines
You might want to use this submission from File Exchange: <http://www.mathworks.com/matlabcentral/fileexchange/11837-fast-and...

casi 10 años hace | 0

Cargar más