![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/7464912_1522121625699_DEF.jpg)
MF
Followers: 0 Following: 0
Statistics
13 Questions
0 Answers
RANK
65,661
of 297,016
REPUTATION
0
CONTRIBUTIONS
13 Questions
0 Answers
ANSWER ACCEPTANCE
23.08%
VOTES RECEIVED
0
RANK
of 20,419
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 157,725
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
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 years ago | 1 answer | 0
1
answerQuestion
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 years ago | 0 answers | 0
0
answersQuestion
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 years ago | 1 answer | 0
1
answerQuestion
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 years ago | 2 answers | 0
2
answersQuestion
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...
9 years ago | 1 answer | 0
1
answerQuestion
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; ...
9 years ago | 3 answers | 0
3
answersQuestion
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...
9 years ago | 1 answer | 0
1
answerQuestion
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...
9 years ago | 4 answers | 0
4
answersQuestion
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...
9 years ago | 1 answer | 0
1
answerQuestion
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...
9 years ago | 1 answer | 0
1
answerQuestion
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...
9 years ago | 2 answers | 0
2
answersQuestion
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 years ago | 1 answer | 0
1
answerQuestion
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 years ago | 1 answer | 0