photo

CHIRANJIT DAS


Last seen: 2개월 전 2022년부터 활동

Followers: 0   Following: 0

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

통계

MATLAB Answers

0 질문
7 답변

순위
2,662
of 299,007

평판
22

참여
0 질문
7 답변

답변 채택
0.00%

획득한 표
1

순위
 of 20,659

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 163,074

참여
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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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]) ...

거의 3년 전 | 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...

거의 3년 전 | 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년 전 | 0

| 수락됨