MJFcoNaN
Followers: 0 Following: 0
learning and learning
Python, MATLAB, Shell, Fortran
Spoken Languages:
English, Chinese
Professional Interests:
Geoscience
Statistiques
RANG
585
of 295 448
RÉPUTATION
128
CONTRIBUTIONS
0 Questions
62 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
16
RANG
18 805 of 20 227
RÉPUTATION
0
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
1 Fichier
TÉLÉCHARGEMENTS
1
ALL TIME TÉLÉCHARGEMENTS
8
RANG
of 153 872
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Cannot read NC file dimensions values and regrid them
Hello, "ncread" can only get a variable not a dimention. There is only a length of any "Dimention", such as lat=234, but no va...
9 mois il y a | 1
| A accepté
How to create a custom colormap ("seismic" from python)
Hello, The easiest way may be creating manually in "colormap editor" and then you can save it. Right-click the colorbar and se...
plus d'un an il y a | 1
How to make non iterative code faster than the iterative when using line by line backslash inverse ?
Hello, The example may not show that iterative one is faster, because they are both too simple and fast. I will suggest you tr...
presque 2 ans il y a | 1
I can't comment my code with Chinese in matlab2022b
你好, 强烈建议你避免中文字符。 就我所知,Matlab对中文字符的支持并不完善(不知道是不是Windows等操作系统层面的问题),经常出现代码中所有中文字符变成乱码、问号等不可逆损坏的情况。
presque 2 ans il y a | 0
How to check if the input it´s a string?
Hello, you may need the 's' option to avoid evaluating text: b1= input('Press number 1 or 2: ','s');
presque 2 ans il y a | 1
| A accepté
How to get scale and coordinates from quiver function?
Hello, The vector field is instantaneous, therefore, you have to provide the increment of time for getting a new proximate loca...
presque 2 ans il y a | 1
How can I change the variable viewer font?
Hello, You can set fonts separately in: Preference--font
presque 2 ans il y a | 0
| A accepté
Matlab kills itself when my matrix is bigger than 7.5 GB
Hello, It is often the RAM that limits variable size and parallel may not help. You may try to allow more RAM by matlab: Prefer...
presque 2 ans il y a | 0
Two contour plots on the same figure with two different colormaps?
Hello, As you mentioned, adding a new axes is a normal suggestion to introduce a new colormap, because an axes can only have on...
presque 2 ans il y a | 0
How can I run python script file programmed in anaconda virtual environment in MATLAB?
Hello, Matlab does not support python in virtual environment as well as in standard environment. There may be some basic and im...
presque 2 ans il y a | 0
| A accepté
/bin/bash: command not found error
hello, I have answered a similar question recently. This may be helpful: https://ww2.mathworks.cn/matlabcentral/answers/187962...
presque 2 ans il y a | 0
How to use a command for the terminal which isn't a standard one?
Hello, 'system' starts a new shell process which may not inherit your familiar environment. I suggest you check the PATH in ma...
presque 2 ans il y a | 1
| A accepté
Create variables inside the field of netcdf
Hello, "Europe" will be a group name in netcdf: GID = netcdf.defGrp(fid,'Europe'); lat_ID = netcdf.defVar(GID,'lat','doubl...
plus de 2 ans il y a | 0
| A accepté
Error using im2frame
Hello, getframe is the suitable fucntion there: frame = getframe(gcf);
plus de 2 ans il y a | 1
| A accepté
Deleting non identical values of 2 vectors?
Hello, The function of ismember may help you a = [5 6 1 8 4 7 3]; b = [4 5 6 2]; [lia,locb]=ismember(a,b); a(~lia)=NaN
plus de 2 ans il y a | 0
| A accepté
How can I read variables (lat lon and chl-a)in nc files with groups?
Hello, If possible, I will suggest you choose the "level 3 mapped data" which is much more convenient to deal with in matlab, b...
plus de 2 ans il y a | 1
| A accepté
How to fix the figure plot always being above on the screen?
Hello, You may set the figure property of WindowStyle to 'modal' : f=figure; f.WindowStyle='modal'; PS: 'docked' is another ...
plus de 2 ans il y a | 0
pyrunsfile doesn't work when python script includes "import"
Hello, As I know, there were some python packages that some versions of matlab can't load if you installed them in virtual envi...
plus de 2 ans il y a | 0
finding the index of NaN
You may use "isnan" A = [10 30 NaN 30] isnan(A) PS: There is a tip from help document "NaN values are not equal to each othe...
plus de 2 ans il y a | 1
Creating a Timetable from a large excel data set
Hello, What type is the AbsTime? Does this one work? t=table2timetable(m137);
plus de 2 ans il y a | 0
Connection error Matlab Download and Installation
Hello, It could not be a regular connection problem by firewall or proxy since you can download some parts. I will suggest you...
plus de 2 ans il y a | 0
Find the nearest point of intersections of circles
Hello, You may need a different method than intersection. For example create a distance function under your own criterion. This...
plus de 2 ans il y a | 1
| A accepté
How to plot an ocean depth profile colormap for a angled coast?
Hello, The 2D or 3D interpolation may help. The method of reading lon and lat suggests your ROMS's grid in a form of "ndgrid",...
plus de 2 ans il y a | 0
Is there any other function faster than sum(A,2) to get the sum of all rows?
In general, the native functions are optimized sufficiently. In certain cases, there may be some better way but in other parts ...
plus de 2 ans il y a | 0
Error while finding peak value and location
Hello, You should sort the "x" variable ("vv" in your code) before calling findpeaks load 'vv.mat' load 'cc.mat' for m = 1:n...
plus de 2 ans il y a | 1
| A accepté
How do you determine if a point is to the left or right of a curve?
Hello, Is "to the right" meaning that a red point is in the polygon of blue track? The function of inpolygon may help: [in, on...
plus de 2 ans il y a | 0
| A accepté
Import part of dataset in a HDF5 file, by 'member' and/or 'logical array'
Hello, The "start, count, stride" is suitable for slicing a huge matix. For example this will only read a "vector" from a 2D m...
plus de 2 ans il y a | 0
why is it not plotting?? blank graph
Why do you comment the lines of calculate y1 and y2? % Ecuaciones Diferenciales Ordinarias dy/dx=f(x,y) a resolver ------------...
plus de 2 ans il y a | 0
| A accepté
How to delete rows from matrix
Hello, This may help: SP_U(ismember(SP_U, SP_d,'rows'),:)=[];
plus de 2 ans il y a | 0
| A accepté
How can I append table to csv file?
Hello, dlmwrite cannot deal with table, but take numetric matrix or cell, such as [1 2 3] or {1,2,3}. You may take the values ...
plus de 2 ans il y a | 0