Jincy - MATLAB Central
photo

Jincy


Last seen: 1年以上 前 2023 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB AnswersFrom 05/23 to 03/25Use left and right arrows to move selectionFrom 05/23Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

13 質問
0 回答

ランク
185,623
of 297,851

評判
0

コントリビューション
13 質問
0 回答

回答採用率
0.0%

獲得投票数
0

ランク
 of 20,493

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 159,663

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

Feeds

表示方法

質問


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

2年弱 前 | 2 件の回答 | 0

2

回答

質問


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

2年弱 前 | 0 件の回答 | 0

0

回答

質問


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') ;

2年弱 前 | 1 件の回答 | 0

1

回答

質問


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

2年弱 前 | 1 件の回答 | 0

1

回答

質問


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)

2年弱 前 | 1 件の回答 | 0

1

回答

質問


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 )

2年弱 前 | 1 件の回答 | 0

1

回答

質問


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

2年弱 前 | 0 件の回答 | 0

0

回答

質問


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

2年弱 前 | 1 件の回答 | 0

1

回答

質問


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

2年弱 前 | 2 件の回答 | 0

2

回答

質問


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

2年弱 前 | 1 件の回答 | 0

1

回答