photo

Bhupendra Prajapati

MathWorks

Last seen: 5 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

0 个提问
10 个回答

Cody

0 个问题
46 个答案

排名
3,541
of 300,369

声誉
16

贡献数
0 个提问
10 个回答

回答接受率
0.00%

收到投票数
2

排名
 of 20,936

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
11,907
of 168,436

贡献数
0 个问题
46 个答案

评分
490

徽章数量
2

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Promoter
  • Knowledgeable Level 2
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
Using MATLAB to search something on PubChem
Try visiting the link given below you will find an example https://www.mathworks.com/matlabcentral/fileexchange/68293-programm...

5 years 前 | 0

已回答
Index in position 2 exceeds array bounds (must not exceed 2).
length function will give maximum of rows or columns in the matrix, you should use size function to calculate number of columns ...

5 years 前 | 0

已回答
Function or loop to get radians
You can use toRadians('degrees', gradlat) to covert an angle in degrees to radian. From more information visit the link gi...

5 years 前 | 0

已回答
Eig(A) returns long fractional answer instead of a single number
You can use double(eig(A)).

5 years 前 | 0

已回答
How to create a struct?
parameter = struct(scenarioServiceCopy(1),scenarioServiceCopy(2)); Just follow the exmaples given at the link below -> https:/...

5 years 前 | 0

已回答
Writing time series data to a netCDF file from workspace
You could create another netcdf file put write your data in that file and then merge it with your myfile.nc Refer to the link b...

5 years 前 | 0

已回答
1D transport model coding matlab
You can find advection code for 1D and 2D at the link given below -> https://www.mathworks.com/matlabcentral/fileexchange/38085...

5 years 前 | 1

| 已接受

已回答
Write a mat file into netCDF file
Data from the MATLAB workspace can be saved into the variable in the NetCDF file, using the netcdf.putVar function. netcdf.putV...

5 years 前 | 1

| 已接受

已回答
Execute Linux Commands From Windows Matlab
The "system" function lets you execute terminal commands on your local machine from MATLAB and can, therefore, be used in a MATL...

5 years 前 | 0

已回答
I want to use dataset
You can make use of text file,csv file,and excel sheets for creating your dataset, MatLab has good support for these files. For...

5 years 前 | 0

| 已接受