photo

CHIRANJIT DAS


Last seen: 2 years 前 自 2022 起处于活动状态

Followers: 0   Following: 0

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

统计学

MATLAB Answers

0 个提问
7 个回答

排名
2,639
of 297,457

声誉
22

贡献数
0 个提问
7 个回答

回答接受率
0.00%

收到投票数
1

排名
 of 20,438

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 158,938

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
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...

2 years 前 | 0

| 已接受

已回答
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...

2 years 前 | 0

| 已接受

已回答
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...

2 years 前 | 0

已回答
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...

2 years 前 | 1

| 已接受

已回答
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]) ...

2 years 前 | 0

已回答
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...

2 years 前 | 0

| 已接受

已回答
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 前 | 0

| 已接受