Community Profile

photo

babyelephant


Last seen: 2 years ago Active since 2019

Followers: 0   Following: 0

Statistics

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


cell array with date and time
{[11-Jun-1962 00:00:00]} {[16-Mar-1961 00:00:00]} {[02-Jun-1934 00:00:00]} {[02-Jun-1934 00:00:00]} {[09-Jun-1965 00:00:00]}...

4 years ago | 0 answers | 0

0

answers

Question


Replace Nan in array with the previous value/text/number
function A = fill_nans(A) % Replaces the NaN in each column with % previous non-NaN values. for i = 1:size(A,1) I = A(...

5 years ago | 1 answer | 0

1

answer

Answered
Big table with zero
Hello, Finally its done . Thank you all. A=num(i,:); %get all the entries A(isnan(A)) = 0; %convert NaN to zero ...

5 years ago | 0

Answered
Big table with zero
I can also use [num,txt,raw] = xlsread('pat-test.xlsx'); raw{2,1} num(2,1) txt(1,:) but then I can not find it out how I g...

5 years ago | 0

Question


Big table with zero
T = []; p=5; for i =5:10 p=i+1; T = data(p,11:74) T(:,all(ismissing(T,0)))=[] end I have a big table where I n...

5 years ago | 3 answers | 0

3

answers