Mark Whirdy


Attivo dal 2012

Followers: 0   Following: 0

Messaggio

Statistica

All
MATLAB Answers

0 Domande
15 Risposte

Cody

0 Problemi
13 Soluzioni

RANK
2.644
of 301.533

REPUTAZIONE
24

CONTRIBUTI
0 Domande
15 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
6

RANK
 of 21.316

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
33.092
of 175.212

CONTRIBUTI
0 Problemi
13 Soluzioni

PUNTEGGIO
150

NUMERO DI BADGE
2

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • First Review
  • Knowledgeable Level 2
  • First Answer
  • Commenter
  • Solver

Visualizza badge

Feeds

Visto da

Risposto
Split matrix across the median
a = rand(5,10); b = repmat(median(a,1),10); c1 = a; c1(a<b) = NaN; c2 = a; c2(a>=b) = NaN; .... what you're lookin...

oltre 13 anni fa | 0

Risposto
Loading multiple files into the same database
In semi-pseudo code below My_array = []; % container for all file contents for i = 1:size(Name_File_Array) fid = fope...

oltre 13 anni fa | 0

Risposto
Convert an acceleration time graph, into a velocity time graph.
I'm not sure its a matlab issue as such but you'd need to know the starting velocity at least. If we assume its zero, then I thi...

oltre 13 anni fa | 0

| accettato

Risposto
Loading multiple files into the same database
Hi Bob Can you read the contents of all files into matlab in loop, vertically concatenating the cellarrays and perform a sing...

oltre 13 anni fa | 0

Risposto
computation for each date
doc xlsread doc movavg doc accumarray

oltre 13 anni fa | 0

Risposto
from cell array to numeric vector
MWDIData_pop(1,1:5) = {[3752373],[3876616],[4006236],[4140773],[4279524]}; % square brackets in a cellarray indicates that t...

oltre 13 anni fa | 2

| accettato

Risposto
from cell array to numeric vector
yearCellArray = {'2008';'2009';'2010'}; yearVector = cellfun(@str2double,yearCellArray);

oltre 13 anni fa | 1

Risposto
Can I use this formula??
not really a matlab question, google it

oltre 13 anni fa | 1

Risposto
How to vectorize a find
a temporary vector of row numbers, then use your vector-of-interest & a logicsl statement to index this row-number vector ...

oltre 13 anni fa | 0

Risposto
How can we achieve interfacing of two GUI's?
if you just put the name of gui2 inside the callback of the pushbutton of gui1, then gui2 does not open? gui1_mybutton_...

oltre 13 anni fa | 0

Risposto
How to store matrix values in a vector?
Hi Peter Finding it a little difficult to totally grasp what you want to do e.g. m is a 3d matrix & not a 2d one, right? M...

oltre 13 anni fa | 0

| accettato

Risposto
memory leak using activex to save multiple excel files
are you not closing the workbooks?

oltre 13 anni fa | 0

Risposto
remove numbers from a name
welcome to the frustrating world of regular expressions!! regexp(name,'[a-z]\w+','match') all the best, Mark

quasi 14 anni fa | 2

Risposto
Vectorize double loops with constraints on the indexes
Hi Anne-Claire I can make some progress in the vectorization here (code below) but there are a few issues. 1) The r=max(k-...

quasi 14 anni fa | 0

Risposto
How to overcome the error message in the script below -Matrix dimension error - due to different size array manipulation
Hi Jan The error I get is ??? Index exceeds matrix dimensions. Since PT_mj is a [3*4] matrix and we are trying to...

quasi 14 anni fa | 0