photo

shobhit pipil


Last seen: 2 years ago Active since 2018

Followers: 0   Following: 0

Message

Statistics

MATLAB Answers

4 Questions
4 Answers

RANK
288,745
of 300,302

REPUTATION
0

CONTRIBUTIONS
4 Questions
4 Answers

ANSWER ACCEPTANCE
75.0%

VOTES RECEIVED
0

RANK
 of 20,911

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,040

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

  • First Answer

View badges

Feeds

View by

Answered
Wants to add each iteration data in the next column.
rch = rch_1960_NY6_1975; flow_outF=zeros(3652,166); x=rch; flow=x(:,8); c=0; for i=1:166 %c=c+1 for c=c+1 %c<166 ...

5 years ago | 0

| accepted

Question


Wants to add each iteration data in the next column.
x=rch; flow=rch(:,8); c=0; for i=1:166 %c=c+1 for c=c+1 %c<166 ind1 = rch(:,2) == c; flow_out2= flow(...

5 years ago | 1 answer | 0

1

answer

Answered
How can I store data extracted from multiple NetCDF into already extracted txt file and add next year data after last line of previous iteration in the same txt file.
% new code to extract data from netcdf file to SWAT format text file. data =[]; Files = dir('*.nc'); for k=1:length(Files) ...

7 years ago | 0

| accepted

Answered
Extract data from NetCDF files to text files (For SWAT Model).
Now It works for me:- % new code to extract data from netcdf file to SWAT format text file. data =[]; Files = dir('*.nc'); f...

7 years ago | 0

| accepted

Question


Extract data from NetCDF files to text files (For SWAT Model).
% new code to extract data from netcdf file to SWAT format text file. data =[]; Files = dir('*.nc'); for k=1:length(Files) ...

7 years ago | 1 answer | 0

1

answer

Answered
Convert sveral netCDF files to ASCII or CSV
data = []; Files=dir('*.nc'); for k=1:length(Files) FileNames=Files(k).name pr=ncread(FileNames,'rainfall_amount');%nam...

7 years ago | 0

Question


How can I store data extracted from multiple NetCDF into already extracted txt file and add next year data after last line of previous iteration in the same txt file.
%MAKE SURE THE DIRECTORY IS CHANGED TO THE DIRECTORY THAT CONTAINS THE NETCDF FILES clear clc % introduction of the loop F...

7 years ago | 1 answer | 0

1

answer