回答済み
How to pass data from one GUI to another?
I am not clear on your question, but let me try to understand. You say the problem arises when your main GUI is called again. ...

15年以上 前 | 0

回答済み
Generate random points inside a circle
Here is a function to do this without skew: function [X,Y] = rand_circ(N,x,y,r) % Generates N random points in a circle. ...

15年以上 前 | 4

回答済み
Basics-
% Create an m-by-n matrix where each element is sum of row and col position. D = ones(m,n); [I,J] = find(D); D(:) = I...

15年以上 前 | 0

回答済み
Vectorizing for loops
In addition to Walter's comment, this: diag(sqrt(L))*inv(E) is equivalent to the preferred: diag(sqrt(L))/E Also, it ...

15年以上 前 | 0

回答済み
Simple MATLAB sum question.
Is this what you are after? b = zeros(3,1); for ii = 1:3 for jj = 1:3 b(ii)= b(ii) + A(ii,jj)*x(jj); ...

15年以上 前 | 0

回答済み
Help with subfunction in GUI
I am not sure what you mean by a "subfunction of the callback" here. It looks like you are using a GUIDE GUI, which means that ...

15年以上 前 | 0

回答済み
Changing alpha property on surface objects causes text objects in GUI to flip direction?
Would you post some code that reproduces what you see? For example, this does not reproduce what you are seeing on my machine: ...

15年以上 前 | 0

回答済み
How do I remove the empty cells from a vector of cells?
Probably the fastest approach: strs = strs(~cellfun('isempty',strs)) % Call Built-in string

15年以上 前 | 10

回答済み
Why does it not work to close my figure programmatically in MATLAB 7.11 (R2010b)?
You set the 'HandleVisibility' property of the figure to 'off'. When you do this, gcf does not see the figure. Here is your co...

15年以上 前 | 3

| 採用済み

回答済み
How can the year 2011 be expressed as the sum of consecutive primes in MATLAB 7.11 (R2010b) ?
Another method: N = 2011; % Given P = primes(N/4); % Conservative estimate for ceiling M = N/11; % The mean [...

15年以上 前 | 2

回答済み
Why does 1 - 2/3 - 1/3 not equal zero?
Ned! I am sure you know that the reason why (1 - 2/3 - 1/3) ~=0 is that MATLAB does its work in floating point arithmetic, not ...

15年以上 前 | 6

| 採用済み

送信済み


RCUMSUMC
RCUMSUM cumulative sum of elements, restarted after every zero.

16年弱 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

送信済み


COMBINATOR -combinations AND permutations
Returns 1 of 4 different samplings on the set 1:N, taken K at a time.

16年弱 前 | ダウンロード 3 件 |

5.0 / 5
Thumbnail

送信済み


CHECKVARS
Checks for function masking by variables in an M-File.

約16年 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

送信済み


NFACTORK
Find all factorings of N which have K elements.

16年以上 前 | ダウンロード 2 件 |

4.0 / 5
Thumbnail

送信済み


41 Complete GUI Examples
41 working GUIs to read and learn.

16年以上 前 | ダウンロード 4 件 |

5.0 / 5

送信済み


EXPAND
Replicate and tile each element of an array.

約17年 前 | ダウンロード 1 件 |

5.0 / 5
Thumbnail

送信済み


Next Combination/Permutation
Produces one comb/perm at a time. Both with/without repetition.

約17年 前 | ダウンロード 2 件 |

0.0 / 5
Thumbnail

送信済み


findsubmat
Finds one matrix (a sub-matrix) within another.

約17年 前 | ダウンロード 1 件 |

5.0 / 5
Thumbnail

送信済み


newtzero
Finds the root(s) of a function of one variable, including complex roots, using Newton's method.

約17年 前 | ダウンロード 3 件 |

4.3 / 5
Thumbnail

送信済み


PARTITIONS
Finds all partitions of a set, or only those partitions of a specified length. Includes a viewer.

約17年 前 | ダウンロード 1 件 |

5.0 / 5
Thumbnail

送信済み


ezgraph
Performs basic formatting of a plot with a single GUI.

17年以上 前 | ダウンロード 1 件 |

5.0 / 5
Thumbnail

送信済み


SUBFIGURE
SUBFIGURE creates figures in tiled positions.

17年以上 前 | ダウンロード 1 件 |

5.0 / 5
Thumbnail

送信済み


axescenter
Puts axes in the center of a plot. Zooming, panning and some command line manipulations allowed.

17年以上 前 | ダウンロード 2 件 |

4.6 / 5
Thumbnail

送信済み


TRIGDEMO
Allows user to see how parameters affect plots of trigonometric functions.

17年以上 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

送信済み


ISLANDS
Finds all "islands" which are 4-connected components in a matrix.

18年弱 前 | ダウンロード 2 件 |

5.0 / 5
Thumbnail

送信済み


guidegetter
Creates a standalone M-file GUI from a guide made GUI.

18年弱 前 | ダウンロード 2 件 |

4.1 / 5
Thumbnail

送信済み


remindme
Issues a reminder at a specifice time.

18年弱 前 | ダウンロード 1 件 |

5.0 / 5
Thumbnail

送信済み


h_trid
Uses the Householder method to tridiagonalize a matrix.

18年弱 前 | ダウンロード 1 件 |

5.0 / 5

送信済み


rombquad
Performs Romberg quadrature.

18年弱 前 | ダウンロード 1 件 |

4.75 / 5
Thumbnail

さらに読み込む