Respondida
How to simulate Markov Chain
Sounds like you're looking for the hmm* functions. What does your data look like? Do you know your transition matrix or are yo...

alrededor de 13 años hace | 0

Respondida
to create AVI from set of images
<http://www.mathworks.com/help/releases/R2013a/matlab/ref/videowriter.writevideo.html>

alrededor de 13 años hace | 0

| aceptada

Respondida
3D Animation in matlab
Of course: <http://www.mathworks.com/help/releases/R2013a/matlab/ref/hgtransform.html> See example.

alrededor de 13 años hace | 0

Respondida
How to place each section title on a new page in report generator?
Contact Technical Support and reference 1-1BH9S.

alrededor de 13 años hace | 0

Respondida
About solve function in Symbolic Math Toolbox
syms x y = vpa('pi*x+exp(1)*x^2') a = coeffs(y) In general to discover this stuff I would recommend using: methodsvi...

alrededor de 13 años hace | 0

| aceptada

Respondida
how to smooth / refine edges ??
Similar to what Paul is suggesting: %Standard IPT Image I = imread('cameraman.tif'); %Its edges E = edge(I,'canny'); %D...

alrededor de 13 años hace | 0

| aceptada

Respondida
Is there is any difference between otsu & graythresh??
|graythresh| is MATLAB's Image Processing Toolbox's implementation of the Otsu algorithm. doc graythresh Explains this i...

alrededor de 13 años hace | 1

Respondida
Image Processing, how do I create a draggable square cursor and to calculate avg and std of ROI
doc imrect And look at its method |createMask|

alrededor de 13 años hace | 0

| aceptada

Respondida
What multi-objective optimisation algorithm is the multi-objective solver in the global optimisation toolbox based on?
<http://www.mathworks.com/help/releases/R2013a/gads/gamultiobj.html |doc gamultiobj|> _[1] Deb, Kalyanmoy. Multi-Objective Op...

alrededor de 13 años hace | 0

Respondida
How can I plot implicit equation with EZPLOT without appearing the said equation as the graph title?
ezplot('sin(x)') title([]) Just remove the title after...

alrededor de 13 años hace | 0

| aceptada

Respondida
Relating Radio button to a dynamic pop up menu
<http://www.mathworks.com/matlabcentral/fileexchange/24861-41-complete-gui-examples FEX.Matt's_GUIs.GUI21 and GUI22>

alrededor de 13 años hace | 1

Respondida
Is it possible to declare and function within another function? if not, Look at the code below
You either have to pass it in as an input to the second function, or make the second function nested: function foo(stuff) ...

alrededor de 13 años hace | 0

Respondida
how to replace characters input by user in a input dialog box with asterisks *( like entering password)
<http://www.mathworks.com/matlabcentral/fileexchange/24861-41-complete-gui-examples FEX:Matt's_GUIs:GUI37>

alrededor de 13 años hace | 0

Respondida
combine two regexprep into one
Why bother? That works and is likely easier to understand!

alrededor de 13 años hace | 1

Respondida
FAQ: How can I process a sequence of files?
Examples in the documentation: <http://www.mathworks.com/help/releases/R2013a/matlab/import_export/process-a-sequence-of-file...

alrededor de 13 años hace | 1

Respondida
Files in different folders
<http://www.mathworks.com/matlabcentral/answers/57446> <http://www.mathworks.com/help/releases/R2013a/matlab/import_export/pr...

alrededor de 13 años hace | 0

Respondida
How do you concatenate several .mat files into one?
<http://www.mathworks.com/matlabcentral/answers/57446 FAQ> You may also find the |matfile| class helpful: doc matfile

alrededor de 13 años hace | 0

Respondida
How many instance of the class is initiated?
Here is how I would attack this, (and let me reiterate, I don't know why you need this, there is probably a better way). I wo...

alrededor de 13 años hace | 2

Respondida
Bug using LinearModel.fit in a loop?
Well this part doesn't work: V = nchoosek(6,4) for i = 1:15 A{i}= V(i,:) end because V is a scalar. Start using ...

alrededor de 13 años hace | 1

| aceptada

Respondida
Any way to get the "current" class
Not sure I totally understand what you want. You have a class, C, and you pass an object, obj, of class C into some function, f...

alrededor de 13 años hace | 0

Respondida
using FIND in 3D matrix
I would do that like this: A(:,:,1)=[1 2 ; 3 4]; A(:,:,2)=[9 8 ; 4 4]; A(:,:,3)=[2 4 ; 7 4]; A(:,:,4)=A(:,:,1); B=...

alrededor de 13 años hace | 0

Respondida
someting is wrong but ı didnt find it
Using a cell array for a stiffness matrix is a bad idea. You will eventually need to build the entire global stiffness matrix i...

alrededor de 13 años hace | 0

Respondida
How do i make a gui a singleton that was NOT created using GUIDE ???
<http://www.mathworks.com/matlabcentral/fileexchange/24911-design-pattern-singleton-creational>

alrededor de 13 años hace | 0

| aceptada

Respondida
How many GPU can be used simultaneously with Matlab+PCT ?
<http://www.mathworks.com/help/releases/R2013a/distcomp/gpudevice.html> It seems to be possible.

alrededor de 13 años hace | 0

Respondida
After using nchoosek function, how can i create variables for each answer?
<http://www.mathworks.com/matlabcentral/answers/57445 FAQ>

alrededor de 13 años hace | 0

| aceptada

Respondida
incomplete gamma function calculation
I don't believe that's possible: gammainc(5,0) gammainc(5,1000); it never goes near two. *More* options = optim...

alrededor de 13 años hace | 0

| aceptada

Respondida
Writing callback for a pushbutton
The issue is in how you created the callback: handles.M1_8.calculate = uicontrol ('Style','pushbutton',... ...

alrededor de 13 años hace | 1

| aceptada

Respondida
Write sigma in uicontrol / text
Use an |annotation| instead of a |uicontrol|. This offers a text interpreter property: annotation(gcf,'textbox','String','...

alrededor de 13 años hace | 2

| aceptada

Respondida
Attempt to execute SCRIPT builtin as a function
which -all builtin Should show you your offending file you need to rename that is shadowing MATLAB's |builtin()|.

alrededor de 13 años hace | 0

| aceptada

Respondida
How to Merge two structures.
So: x.data = [1 1 0 0 1]; y.data = [pi pi pi pi pi]; z.data = x.data; idx = ~z.data; z.data(idx) = y.data(idx);

alrededor de 13 años hace | 0

Cargar más