MF
2016년부터 활동
Followers: 0 Following: 0
Feeds
질문
Interpolating if consecutive NaNs less than 16
I am trying to interpolate only gaps less than 16..but I can't manage..till now I only managed to interpolate all the gaps...any...
대략 8년 전 | 답변 수: 1 | 0
1
답변질문
Calculating variance in loop
Hi, I have 8 years of data and I want to calculate the variance of the same month but different year all together. i.e. Variance...
8년 초과 전 | 답변 수: 0 | 0
0
답변질문
Get unzipped files, copy and unzip them
Hi, I have a folder containing 2886 subfolder, and each subfolder contains zipped files. I want to enter each subfolder, copy th...
8년 초과 전 | 답변 수: 1 | 0
1
답변질문
Daily average of 8 years with data set every 3 hours
I have a data set consisting of 8 years from 2006-2013 of SST taken every 3 hours. There are some gaps in the data. I have alrea...
8년 초과 전 | 답변 수: 2 | 0
2
답변질문
Save each image loaded by a loop
I have 4 bmp images named Target1.bmp ..Target4.bmp and I want to load them using a loop. I am using the following code but it i...
8년 초과 전 | 답변 수: 1 | 0
1
답변질문
index must be positive integer or logical
I am using an explicit/implicit scheme for Gravity waves in one dimension and I'm using the following code. ntot = 100; ...
8년 초과 전 | 답변 수: 3 | 0
3
답변질문
extracting portion of .nc file based on date
I have a netCDF file containing data for a whole. I want to extract a portion of the data based on date. For example StartDat...
8년 초과 전 | 답변 수: 1 | 0
1
답변질문
merging column elements into one
I have a matrix of 4 columns containing year in 1st column, month in 2nd, day in 3rd, and time in 4th. Is there a way to combine...
8년 초과 전 | 답변 수: 4 | 0
4
답변질문
importing date/time from excel to matlab
Hi, I am running matlab R2014b on windows 10 I want to import date/time from excel to matlab. Date/Time is in the following f...
8년 초과 전 | 답변 수: 1 | 0
1
답변질문
Merging text files into one
I want to merge the content of 7 text files into a single file. I'm using system('copy 090615.txt+090616.txt+090617.txt+09...
8년 초과 전 | 답변 수: 1 | 0
1
답변질문
merging files using for loop
I am trying to merge 7 text files into 1 using system ('copy 090615.txt+090616.txt+090617.txt+090618.txt+090619.txt+09061...
8년 초과 전 | 답변 수: 2 | 0
2
답변질문
I am trying to plot, at x=pi/4, the variation of the error percentage along h (h increments from 0.01 to 0.5), using the first order central difference method for function f(x)=sinx. Can't figure out what's wrong with the code. Any help please?
%t(n) is the approx.value z = cos(pi/4);%Exact value n=0 for h=0.01:0.01:0.5; n=n+1; t(n) =(sin((pi/4)+...
거의 9년 전 | 답변 수: 1 | 0
1
답변질문
I am trying to plot, at x=pi/4, the variation of the error percentage along h (h increments from 0.01 to 0.5), using the first order central difference method for function f(x)=sinx. Can't figure out what's wrong with the code. Any help please?
z = cos(pi/4);%Exact value n=0; for h=0.01:0.01:0.5; n=n+1; t(n) =((sin(pi/4)+(h))-(sin(pi/4)-(h)))/(2*h); ...
거의 9년 전 | 답변 수: 1 | 0