Gareth Lee - MATLAB Central
photo

Gareth Lee


Last seen: casi 2 años hace Con actividad desde 2012

Followers: 0   Following: 0

Mensaje

Estadística

All
CodyMATLAB AnswersFile ExchangeFrom 08/12 to 04/25Use left and right arrows to move selectionFrom 08/12Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 Preguntas
7 Respuestas

File Exchange

2 Archivos

Cody

4 Problemas
1832 Soluciones

CLASIFICACIÓN
4.151
of 298.313

REPUTACIÓN
12

CONTRIBUCIONES
0 Preguntas
7 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
2

CLASIFICACIÓN
11.764 of 20.563

REPUTACIÓN
37

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
2 Archivos

DESCARGAS
3

ALL TIME DESCARGAS
374

CLASIFICACIÓN
57
of 160.817

CONTRIBUCIONES
4 Problemas
1832 Soluciones

PUNTUACIÓN
16.237

NÚMERO DE INSIGNIAS
24

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Triathlon Participant
  • Scavenger Finisher
  • Knowledgeable Level 1
  • First Answer
  • Cody Challenge Master
  • Community Group Solver
  • Personal Best Downloads Level 1
  • First Review
  • First Submission
  • Project Euler I
  • Cody Problems in Japanese Master
  • Indexing II Master

Ver insignias

Feeds

Ver por

Respondida
my question is can anyone improve my code to get the right answer?
It seems like to decide given year is whether or not a leap year. If you use the matlab 2016b, you can use the function 'leapyea...

más de 8 años hace | 0

Respondida
hi, I have array a = [5 4 0;3 1 0;5 7 0], how can I replace the value in third column (a(:,3)) with the values in column 1 (a(:,1)) when a(:,1) > a(:,2) . I need obtain [5 3,5] in the third column
I think the description of your question is not clear, a(:,1)>a(:,2) is a column vector not all true. Is this your judge conditi...

más de 8 años hace | 1

Respondida
Fitting experimental data to find a function
You can try polyfit function or other curve fit function, i.e. nlinfit or lsqcurvefit,to find proper equation. you also use cft...

más de 8 años hace | 0

| aceptada

Respondida
Loop backwards and select subset of rows that meet criteria
if you want to use loop, it is showed below: tindex = find(A(:,1)==t); for j = tindex:-1:2 if(A(j,1)-A(j-1,1)==1)...

más de 8 años hace | 1

| aceptada

Respondida
Replace rows with NaN only if there are more than two continous zero values in the same column
First, you can find the column with continous zeros(more than two), then find the index for replacement with nan. for example:...

más de 8 años hace | 0

Respondida
Loop backwards and select subset of rows that meet criteria
you can solve it without loop, e.g B = find(diff(A(1:find(A(:,1)==t),1))~=1); result = A(B(end)+1:find(A(:,1)==t)-1,:);

más de 8 años hace | 0

Respondida
Can't find AC or DC source on Simulink
You can't find it if you search it in simulink start page. You can open a blank simulink file, then you can open the simulink li...

más de 8 años hace | 0