Respondida
int function does not return a single number
Add at the end: double(intCpS)

casi 15 años hace | 0

| aceptada

Respondida
Cannot Import Data into MATLAB 2010a
Why not just load PaperResults.mat

casi 15 años hace | 0

| aceptada

Respondida
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...

casi 15 años hace | 0

Respondida
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...

casi 15 años hace | 0

Respondida
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...

casi 15 años hace | 2

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

casi 15 años hace | 1

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

casi 15 años hace | 1

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

casi 15 años hace | 1

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

casi 15 años hace | 1

Respondida
TUTORIAL: how to format your question with markup
*BOLDFACE* <<http://i55.tinypic.com/2646fjc.gif>>

casi 15 años hace | 2

Respondida
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 ...

casi 15 años hace | 1

Respondida
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...

casi 15 años hace | 0

| aceptada

Pregunta


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-...

casi 15 años hace | 1 respuesta | 0

1

respuesta

Respondida
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...

casi 15 años hace | 1

| aceptada

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...

casi 15 años hace | 25

Pregunta


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...

casi 15 años hace | 8 respuestas | 25

8

respuestas

Respondida
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...

casi 15 años hace | 0

| aceptada

Respondida
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 ...

casi 15 años hace | 0

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

casi 15 años hace | 0

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

casi 15 años hace | 0

Respondida
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...

casi 15 años hace | 0

Respondida
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...

casi 15 años hace | 0

Respondida
using single quotes with findstr
strfind(test,'''') With |' '' '| you are looking for < blank>'<blank>

casi 15 años hace | 1

| aceptada

Respondida
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...

casi 15 años hace | 0

| aceptada

Respondida
Can matlab load data online
<http://www.mathworks.com/help/techdoc/ref/urlread.html urlread>

casi 15 años hace | 0

Respondida
"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.

casi 15 años hace | 0

Respondida
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('...

casi 15 años hace | 0

Respondida
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-...

casi 15 años hace | 0

Respondida
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...

casi 15 años hace | 0

Respondida
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...

casi 15 años hace | 1

| aceptada

Cargar más