Community Profile

photo

CHIRANJIT DAS


Last seen: 10 mesi fa Attivo dal 2022

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

Statistiche

  • Knowledgeable Level 2
  • First Answer

Visualizza badge

Content Feed

Visto da

Risposto
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...

oltre un anno fa | 0

| accettato

Risposto
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...

oltre un anno fa | 0

| accettato

Risposto
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...

oltre un anno fa | 0

Risposto
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...

oltre un anno fa | 1

| accettato

Risposto
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]) ...

quasi 2 anni fa | 0

Risposto
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...

quasi 2 anni fa | 0

| accettato

Risposto
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...

quasi 2 anni fa | 0

| accettato