photo

CHIRANJIT DAS


Last seen: 6 months ago Active since 2022

Followers: 0   Following: 0

Programming Languages:
MATLAB
Spoken Languages:
Bengali, English, Hindi

Statistics

MATLAB Answers

0 Questions
7 Answers

RANK
2,686
of 300,392

REPUTATION
22

CONTRIBUTIONS
0 Questions
7 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
1

RANK
 of 20,934

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,373

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

  • Knowledgeable Level 2
  • First Answer

View badges

Feeds

View by

Answered
How can I fix "Index in position 2 exceeds array bounds" in for loop ?
@Rajeev Kumar You are giving dimension of row in the for loop. Perhaps you can replace length(A) with size(A,2). Revised code lo...

3 years ago | 0

| accepted

Answered
For loop of an FFT script
@Hussein Kokash Not sure whether your files are located in a single folder or not. If it is in single folder then you can make u...

3 years ago | 0

| accepted

Answered
I don't know how to add the dots
@Ye Try playing with markers..Like this plot3(x,y,z,'-s','MarkerSize',10,... 'MarkerEdgeColor',[1 .6 .6],... 'MarkerF...

3 years ago | 0

Answered
Use element as indices to continue calculation
Not sure what you are looking for. Hope the below code serves your requirement. Data=csvread('data.csv'); ind=[1,764,1335,1459...

3 years ago | 1

| accepted

Answered
Plot data from Netcdf file with latitude, longitude
contourf(longitude,latitude,variable1'); colorbar hold on load coast plot(long,lat,'k','linewidth',1) axis([75 78 37 42]) ...

3 years ago | 0

Answered
How to define two dimension longitude, latitude and variable for saving data in netcdf format?
dimidlon = netcdf.defDim(ncid,'lon',size(lon,1)); dimidlat = netcdf.defDim(ncid,'lat',size(lon,2)); %variables tim_ID=netc...

3 years ago | 0

| accepted

Answered
How to plot the labels of contours
Just use contour and label them figure(1) contourf(xi,yi,zi,15,'LineStyle','none') hold on [C,h] = contour(xi,yi,zi,15); dx...

3 years ago | 0

| accepted