Mark Whirdy


Con actividad desde 2012

Followers: 0   Following: 0

Mensaje

Estadística

All
MATLAB Answers

0 Preguntas
15 Respuestas

Cody

0 Problemas
13 Soluciones

CLASIFICACIÓN
2.625
of 300.381

REPUTACIÓN
24

CONTRIBUCIONES
0 Preguntas
15 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
6

CLASIFICACIÓN
 of 20.941

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
31.533
of 168.477

CONTRIBUCIONES
0 Problemas
13 Soluciones

PUNTUACIÓN
150

NÚMERO DE INSIGNIAS
2

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

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

Ver insignias

Feeds

Ver por

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

casi 13 años hace | 0

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

casi 13 años hace | 0

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

casi 13 años hace | 0

| aceptada

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

casi 13 años hace | 0

Respondida
computation for each date
doc xlsread doc movavg doc accumarray

casi 13 años hace | 0

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

casi 13 años hace | 2

| aceptada

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

casi 13 años hace | 1

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

casi 13 años hace | 1

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

casi 13 años hace | 0

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

casi 13 años hace | 0

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

casi 13 años hace | 0

| aceptada

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

casi 13 años hace | 0

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

más de 13 años hace | 2

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

más de 13 años hace | 0

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

más de 13 años hace | 0