photo

CHIRANJIT DAS


Last seen: 6 meses hace Con actividad desde 2022

Followers: 0   Following: 0

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

Estadística

MATLAB Answers

0 Preguntas
7 Respuestas

CLASIFICACIÓN
2.686
of 300.392

REPUTACIÓN
22

CONTRIBUCIONES
0 Preguntas
7 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
1

CLASIFICACIÓN
 of 20.934

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 168.373

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Knowledgeable Level 2
  • First Answer

Ver insignias

Feeds

Ver por

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

casi 3 años hace | 0

| aceptada

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

alrededor de 3 años hace | 0

| aceptada

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

alrededor de 3 años hace | 0

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

alrededor de 3 años hace | 1

| aceptada

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

más de 3 años hace | 0

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

más de 3 años hace | 0

| aceptada

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

más de 3 años hace | 0

| aceptada