![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/29778642_1680765702152_DEF.jpg)
Jincy
Followers: 0 Following: 0
Estadística
13 Preguntas
0 Respuestas
CLASIFICACIÓN
133.627
of 297.016
REPUTACIÓN
0
CONTRIBUCIONES
13 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 157.725
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
Feeds
Pregunta
How to read '.m' files which is already saved in matlab
I am just find the year by year nanmaean and saved that script by creating a new folder.Now i want to plot polynomial curve fitt...
más de 1 año hace | 2 respuestas | 0
2
respuestasPregunta
i have total 364 number of .nc files and i want to read only 10 .nc files with lat,lon,time,and soilmoisture.
In this data lat,lon,time and soil moisture are the variables and they all are same for this 10 files except soil moisture data....
más de 1 año hace | 0 respuestas | 0
0
respuestasPregunta
I want to read 2 nc files which containing soil moisture as variable, but when readin the given code ,it showing some error
file1= 'path of the file1' file2='path of file2' sm= ncread(file1,'sm') ; sm=ncread (file2,'sm') ;
más de 1 año hace | 1 respuesta | 0
1
respuestaPregunta
how to calculate the mean using loop
i want to calculate the mean value in 2*2 size by creating a loop A = [1 2; 3 4]; % Matrix A B = [2 3; 5 6]; % Matrix ...
más de 1 año hace | 1 respuesta | 0
1
respuestaPregunta
how could i stack multiple satellite data of soil moisture in to one and find out the nanmean of all files? The size of files is 1440*720. The file is in '.nc' format.
% read the all nc file file = dir('*.nc'); for i = 1:length(file); sm(i) = sm(:,:,i); sm.mean = nanmean(:,:,i)
más de 1 año hace | 1 respuesta | 0
1
respuestaPregunta
how to create a 2*2 matrix by combining two matrices with size of 2*2 ie A and B are 2*2 and i want to get C also 2*2
A =[1 2;3 4]; B=[2 3;5 6]; C=[A;B] ( should be in 2*2 )
más de 1 año hace | 1 respuesta | 0
1
respuestaPregunta
how to display all of the 'nc' files ? I have total number of 52 files, and when i am run the code, it gives the output as '0*1 struct ' ? The code is given beolw
file = dir('.nc,')
casi 2 años hace | 1 respuesta | 0
1
respuestaPregunta
How to read the variable in a loop where the satellite data is in 'h5' format? When i am check the code, am little confused. The code is given below
n = 5; for i = 1:n fprintf( 'The value of n is %d/n',i); end
casi 2 años hace | 0 respuestas | 0
0
respuestasPregunta
I want to calculate the mean of the soil moisture satellite data ,i have daily based data of one year with size 1440*720,and how to calculate the mean? I am confused to find
sm_mean = nanmean(:,:,3)
casi 2 años hace | 1 respuesta | 0
1
respuestaPregunta
how to convert the satellite data to an image
% Load satellite data sat_data = load('satellite_data.mat'); % Pre-process the data sat_data = imadjust(sat_data,[0 1],[0.1 0...
casi 2 años hace | 1 respuesta | 0
1
respuestaPregunta
how to convert a graph from the satellite data to an image form
% Import satellite data set_data = imread('satellite_data.jpg'); % Reshape the data into an image format sat_image = reshape...
casi 2 años hace | 2 respuestas | 0
2
respuestasPregunta
how to create a loop to calculate the mean of pixels of satellite data of a specified area like india? pixe size of the data is 1440*720
% Load or create an image image = imread('your_image.jpg'); % Replace with your image file name or path % Determine image si...
casi 2 años hace | 1 respuesta | 0
1
respuestaPregunta
how to create a loop to calculate the mean of pixels of satellite data of a specified area like India
for i = 1:3
casi 2 años hace | 0 respuestas | 0