![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/24303646_1634032773402_DEF.jpg)
CHIRANJIT DAS
Followers: 0 Following: 0
MATLAB
Spoken Languages:
Bengali, English, Hindi
Statistik
0 Fragen
7 Antworten
RANG
2.634
of 297.016
REPUTATION
22
BEITRÄGE
0 Fragen
7 Antworten
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
1
RANG
of 20.419
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 157.725
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
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...
mehr als 2 Jahre vor | 0
| akzeptiert
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...
mehr als 2 Jahre vor | 0
| akzeptiert
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...
mehr als 2 Jahre vor | 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...
mehr als 2 Jahre vor | 1
| akzeptiert
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]) ...
mehr als 2 Jahre vor | 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...
mehr als 2 Jahre vor | 0
| akzeptiert
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...
fast 3 Jahre vor | 0
| akzeptiert