Réponse apportée
int function does not return a single number
Add at the end: double(intCpS)

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Cannot Import Data into MATLAB 2010a
Why not just load PaperResults.mat

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Importing from excel to matlab
Those issues pertain to the format which is not preserved when importing. I guess you could use ActiveX to parse the excel and r...

plus de 14 ans il y a | 0

Réponse apportée
Better data tip for Polar graph
At the end of the documentation of |<http://www.mathworks.com/help/techdoc/ref/datacursormode.html#bsawkea-7 datacursormode>| yo...

plus de 14 ans il y a | 0

Réponse apportée
How in the world can you remember the syntax of all or most of the builtin functions without refering to help on section everytime you use it...
From time to time I forget that to compute the *|min|* across rows I have to skip the second argument min(A,[],2) I...

plus de 14 ans il y a | 2

Réponse apportée
TUTORIAL: how to format your question with markup
*HYPERLINK* <<http://img1.uploadhouse.com/fileuploads/13715/13715141a948ce4ecb9def2a75b596ce214cf4ad.gif>>

plus de 14 ans il y a | 1

Réponse apportée
TUTORIAL: how to format your question with markup
*BULLETED LIST* <<http://img3.uploadhouse.com/fileuploads/13715/13715123af95be51be3db537090658c9fb112275.gif>>

plus de 14 ans il y a | 1

Réponse apportée
TUTORIAL: how to format your question with markup
*NUMBERED LIST* <<http://img4.uploadhouse.com/fileuploads/13715/13715114828b96f6c55915694728cb89d4a20b93.gif>>

plus de 14 ans il y a | 1

Réponse apportée
TUTORIAL: how to format your question with markup
*MONOSPACED* <<http://img1.uploadhouse.com/fileuploads/13715/13715111453f626810dabee6f8cd7493ce2726d0.gif>>

plus de 14 ans il y a | 1

Réponse apportée
TUTORIAL: how to format your question with markup
*BOLDFACE* <<http://i55.tinypic.com/2646fjc.gif>>

plus de 14 ans il y a | 2

Réponse apportée
Random number generation open/closed interval
|rand| generates on the closed interval |[...]| What comes to my mind: * to generate on |(...)| rand(...)*(1-2*eps) + eps ...

plus de 14 ans il y a | 1

Réponse apportée
Loop that I am trying to get rid off
% Preallocate R already with NaNs R = NaN(size(date)); % Now we want to test how many dates belong to each rating period, to...

plus de 14 ans il y a | 0

| A accepté

Question


How to embed in a post a nitid image
I was trying to embed a |.gif| in my <http://www.mathworks.com/matlabcentral/answers/13205-tutorial-how-to-format-your-question-...

plus de 14 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
matlab subplot
Call |figure| before the loop, then inside before |hold on|: subplot(3,3,i_z-25) % Example figure for n = 1:9 su...

plus de 14 ans il y a | 1

| A accepté

Discussion


TUTORIAL: how to format your question with markup
*[INDEX]* * *<http://www.mathworks.com/matlabcentral/answers/13205-tutorial-how-to-format-your-question-with-markup#answer_18...

plus de 14 ans il y a | 25

Question


TUTORIAL: how to format your question with markup
*[INDEX]* * *<http://www.mathworks.com/matlabcentral/answers/13205-tutorial-how-to-format-your-question-with-markup#answer_18...

plus de 14 ans il y a | 8 réponses | 25

8

réponses

Réponse apportée
Time to run a program
If your program runs a loop: * you can print at which iteration it is with disp * or you can use waitbar (but unless they i...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Is the time it takes for a database commit proportional to the amount of data?
It's highly inefficient and slow to use matlab to send data to SQL server. We used to process a database of 110e6 x 20 and we ...

plus de 14 ans il y a | 0

Réponse apportée
Vertical Xticks
There are submission that do this kind of stuff, nevertheless the "manual" implementation with text labels: % Dummy plot plo...

plus de 14 ans il y a | 0

Réponse apportée
xlsread - Reading set number of columns with unknown number of row...
Strange, for me it works fine: xlsread('test.xlsx',1,'A:D')

plus de 14 ans il y a | 0

Réponse apportée
Synchronizing experimental data with different timescales
You can use run-length decoding to expand the low-frequency data to match the high-frequency: % Generate random dates (sorted i...

plus de 14 ans il y a | 0

Réponse apportée
Help with histogram physics
|hist| uses |histc| on line 92: edit hist The binning follows the principle |[...)| and it all depends on how you define...

plus de 14 ans il y a | 0

Réponse apportée
using single quotes with findstr
strfind(test,'''') With |' '' '| you are looking for < blank>'<blank>

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
Help me please: Problem to compare elements in array with its label using grp2idx and grpstats
|g1{ixx}| is a *char* and you are comparing it with a double. When compared to a numeric class a char is converted to its ASCII...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Can matlab load data online
<http://www.mathworks.com/help/techdoc/ref/urlread.html urlread>

plus de 14 ans il y a | 0

Réponse apportée
"Squeeze" array of indexes.
% Run length encoding: A = rand(100,1)>.9; find(diff([A; false]) == -1) If you want the first change -1 to 1.

plus de 14 ans il y a | 0

Réponse apportée
Save an invisible figure in an image matrix without priniting the matrix on the screen
Is this what you're trying to do, superimpose two |surf| with two different colormaps? h.f = figure; h.a(1) = axes('...

plus de 14 ans il y a | 0

Réponse apportée
How to specify "ctrl-shift-tab" in the keyboard shortcut editor
right click on the shortcut field > select |ctrl+shift+tab| You may want to look at: http://undocumentedmatlab.com/blog/r2009b-...

plus de 14 ans il y a | 0

Réponse apportée
Matlab list all files in subfolders of the same name...
Try <http://www.mathworks.com/matlabcentral/fileexchange/19550-recursive-directory-listing rdir>: rdir('C:\tests\**\sweep\r...

plus de 14 ans il y a | 0

Réponse apportée
Memory pig?? Problem with kron function
Your W will be around 300 MB and yes it is a common problem. Any solution is not infinitely scalable in practice due to constr...

plus de 14 ans il y a | 1

| A accepté

Charger plus