Réponse apportée
need a help
I have a hard time trying to decipher the form of your problem because of formatting, but <http://www.mathworks.com/access/helpd...

plus de 15 ans il y a | 0

Publié le


Markov Regime Switching Models in MATLAB
NoteThe file submission referenced in this post is no longer available on File Exchange. Michael's pick this week is...

plus de 15 ans il y a

Thumbnail

Réponse apportée
When using ODE45 (or similar functions), what is the benefit of using anonymous functions over passing additional parameters as trailing arguments?
These are some comments I received from a developer: # Some of the newer <http://www.mathworks.com/help/techdoc/learn_matla...

plus de 15 ans il y a | 6

| A accepté

Question


When using ODE45 (or similar functions), what is the benefit of using anonymous functions over passing additional parameters as trailing arguments?
When I want to solve a differential equation with additional parameters function dx = myfun(t, x, p1, p2) ... using <...

plus de 15 ans il y a | 1 réponse | 6

1

réponse

Réponse apportée
Velocity_vs_time graph
Perhaps plot(t, x(:, 2))

plus de 15 ans il y a | 1

Réponse apportée
How to run response surface models in design of experiments ? what the steps or any GUI?
I would go through <http://www.mathworks.com/access/helpdesk/help/toolbox/stats/f58463.html this section> in the documentation. ...

plus de 15 ans il y a | 0

Réponse apportée
What is epoch?
From to the <http://www.mathworks.com/help/toolbox/nnet/gloss.html#6837 glossary>: _*epoch* - Presentation of the set of trai...

plus de 15 ans il y a | 0

| A accepté

Réponse apportée
How to fit data to my customized form automatically?
Since you're already using Curve Fitting Toolbox, use the underlying functions: <http://www.mathworks.com/access/helpdesk/help/t...

plus de 15 ans il y a | 0

| A accepté

Réponse apportée
send bits from matlab to ehternet port
One option is to use the function <http://www.mathworks.com/access/helpdesk/help/toolbox/instrument/tcpip.html |tcpip|> (require...

plus de 15 ans il y a | 0

Réponse apportée
fzeros
With the possibility of stating the obvious, do you mean "fzero" (instead of "fzeros")? And if so, have you read the documentati...

plus de 15 ans il y a | 0

Réponse apportée
Some Foreign Matlab forums
When I was in graduate school, I used to use CSSM almost every day. I haven't been there lately. Now, I peruse MATLAB Answers da...

plus de 15 ans il y a | 1

| A accepté

Réponse apportée
Segmented Sinewave
Okay, I'm still not entirely sure what you mean, but based on your response to one of the questions, it seems like you just want...

plus de 15 ans il y a | 0

Réponse apportée
GUI closing automatically?
I would assume you have a <http://www.mathworks.com/help/matlab/ref/close.html |close|>, <http://www.mathworks.com/help/matlab/r...

plus de 15 ans il y a | 2

| A accepté

Réponse apportée
Cursor line
I posted a similar solution <http://www.mathworks.com/matlabcentral/answers/1758-crosshairs-or-just-vertical-line-across-linked-...

plus de 15 ans il y a | 1

Réponse apportée
How to rename a bunch of files in a folder
Here's an example: % Get all PDF files in the current folder files = dir('*.pdf'); % Loop through each for id ...

plus de 15 ans il y a | 12

Réponse apportée
crosshairs or just vertical line across linked axis plots
This may get you started: function vertical_cursors set(gcf, ... 'WindowButtonDownFcn', @clickFcn, ... 'Window...

plus de 15 ans il y a | 10

| A accepté

Réponse apportée
crosshairs or just vertical line across linked axis plots
Does the answers from this <http://www.mathworks.com/matlabcentral/answers/1308-cursor-line question> help?

plus de 15 ans il y a | 1

Réponse apportée
Simple visualization of a 3-d array (volumetric?)
You can use <http://www.mathworks.com/help/matlab/ref/scatter3.html |scatter3|> to view "voxels" in 3 dimensions, but in your ca...

plus de 15 ans il y a | 0

Réponse apportée
How to Plot a 3-d matrix, so I can see the image it represents?
Perhaps you can read up on <http://www.mathworks.com/help/matlab/visualize/f5-8666.html Volume Visualization Techniques>. There'...

plus de 15 ans il y a | 0

| A accepté

Réponse apportée
View text in editor without saving to file
Depending on the release of MATLAB, you may be able to use the unsupported editor API through the editorservices package. h...

plus de 15 ans il y a | 1

Réponse apportée
Sending e-mail
I was able to do it by changing the Body property (instead of HTMLBody): mail.Body = sprintf('This is line one.\nThis is li...

plus de 15 ans il y a | 1

| A accepté

Réponse apportée
Simulink basics
Take a look at the <http://www.mathworks.com/academia/student_center/tutorials/simulink-launchpad.html Simulink Tutorial launchp...

plus de 15 ans il y a | 2

Réponse apportée
Trouble importing data from excel file using xlsread
What do you get when you type exist('C:\Documents\oput021m.xlsx', 'file') Does it return 2? If 0, then you mistyped the ...

plus de 15 ans il y a | 2

| A accepté

Réponse apportée
Which colour does Matlab use for strings?
On my MATLAB, the color for the strings is [160, 32, 240] (in uint8). You can check it from your <http://www.mathworks.com/help/...

plus de 15 ans il y a | 1

| A accepté

Réponse apportée
Surface fitting toolbox
There are a couple of ways you can do this. 1. From the "Fit" menu, select "Save to Workspace...". This will allow you to sav...

plus de 15 ans il y a | 1

| A accepté

Publié le


Fancy Menus
Jiro's pick this week is menubar by Dirk-Jan Kroon. I'm honestly perplexed that his files have not been...

plus de 15 ans il y a

Thumbnail

Réponse apportée
Can I create a momentary command using the GUI pushbutton?
One way is to make use of <http://www.mathworks.com/help/matlab/ref/figure_props.html#WindowButtonUpFcn WindowButtonUpFcn> prope...

plus de 15 ans il y a | 0

Réponse apportée
GUI for keyboard pressed representing the push button
I assume you are using GUIDE to create your GUI. In that case, create a <http://www.mathworks.com/help/techdoc/ref/figure_props....

plus de 15 ans il y a | 3

Réponse apportée
How do I keep a handle and use FINDOBJ to get a handle again?
What Matt and Matt said. Plus, I would emphasize again: Never ever ever use the actual number to refer to the handle. Instead...

plus de 15 ans il y a | 0

Réponse apportée
[DISCONTINUED] Wish-list for MATLAB Answer sections.
A way to automatically scroll to the most recent answer/comment/edit. For example, this question has many, many answers and comm...

plus de 15 ans il y a | 5

Charger plus