millercommamatt -凯发k8网页登录
north carolina state university
atmospheric research scientist
统计数据
7
49
2
cody0 个问题
255
排名
772
of 277,885
声誉
84
贡献数
7
49
回答接受率
14.29%
收到投票数
6
排名
16,360 of 18,801
声誉
3
平均
0.00
贡献数
2
下载次数
3
all time 下载次数
34
排名
464
of 129,101
贡献数
0 个问题
255
评分
3,285
徽章数量
15
贡献数
0 帖子
贡献数
0
平均
贡献数
0
平均赞数
content feed
this displays as expected for me. imshow(uint8(cat(3,... [0 128 0;0 255 255;255 255 255;0 0 0],... [0 0 0;255 255 128...
6 months 前 | 1
| 已接受
it's because you can round to zero which is invalid as an index. use ceil instead.
6 months 前 | 0
the parent for volshow has to be a viewer3d object. the parent of a viewer3d object can be a figure object (default) | panel obj...
6 months 前 | 0
| 已接受
fid = fopen("axographsampledata\220812_wt_mo_h134r_ea_1391 015.txt","r"); c = textscan(fid,'%f %f',"delimiter",'\t','headerline...
6 months 前 | 1
| 已接受
% b = diff(a) = [768 12 757 767 12 756 ...1524.....768 13 754 271] % note that b will be one less in length than a % if b(n...
6 months 前 | 0
this example from the documentation includes a way to do this. https://www.mathworks.com/help/images/correcting-nonuniform-illu...
6 months 前 | 0
if you want the data from each file to be on their own row, you'll need to use something like a cell array or a structure since ...
6 months 前 | 0
提问
when creating a colorbar to go with a map axes based plot, the colorbar overlaps the labels. what's the optimal solution for p...
6 months 前 | 0 个回答 | 0
0
个回答you should be able to to something like this. i'm waiting on a slow scatter interpolation on my client to finish so i haven't te...
6 months 前 | 0
you can do this in matlab. however, there's nothing like this built in, so you're going to have the handle all the placements of...
6 months 前 | 0
| 已接受
it's because you're turned your datetime type variable into a datenum and plotted that. datenums are the number of days since ja...
6 months 前 | 0
you're defining the columns as strings so the output is going to include whitespace. you want something like: ... data = ...
6 months 前 | 0
your first two inputs need to be reversed. that is, the order in which they are provided to the function need to be switched.
6 months 前 | 0
| 已接受
dt = datetime(x,'inputformat', 'yyyy:ddd:hh:mm:ss.sssssssss');
8 months 前 | 0
vec = mat(i,end); in this line you're always using the last column by specifying end. i think you want: vec = mat(i,:); if i'...
8 months 前 | 0
i think imclose will do what you want. https://www.mathworks.com/help/images/ref/imclose.html
8 months 前 | 0
已解决
*satellite and space engineering - problem #1* _this is the first of a series of problems looking at topics in satellite and ...
8 months 前
已解决
given n as input, generate a n-by-n matrix 'n' using 0 and 1 . example: n=5 ans= [1 0 0 0 1 1 1 0 0 1 1 0 ...
8 months 前
已解决
given n as input draw a 'x' in a n-by-n matrix. example: n=3 y=[1 0 1 0 1 0 1 0 1] n=4 y=[1 0 0...
8 months 前
已解决
given n as input, generate a n-by-n matrix 'j' using 0 and 1 . example: n=5 ans= [0 0 0 0 1 0 0 0 0 1 0 0 ...
8 months 前
已解决
draw a x-by-x matrix 'f' using 1 and 0. (x is odd and bigger than 4) example: x=5 ans= [1 1 1 1 1 1 0 0 0 0 ...
8 months 前
已解决
given _n_ as input, generate a n-by-n matrix like 'z' by _0_ and _1_ . example: n=5 ans= [1 1 1 1 1 0 0 0 1 ...
8 months 前
已解决
given n as input, draw a n-by-n matrix 'i' using 0 and 1. example: n=3 ans= [0 1 0 0 1 0 0 1 0] n=...
8 months 前
已解决
draw a x-by-x matrix 'h' using 1 and 0. (x is odd and bigger than 2) example: x=5 ans= [1 0 0 0 1 1 0 0 0 1 ...
8 months 前
已解决
draw a x-by-x matrix 'd' using 0 and 1. example: x=4 ans= [1 1 1 0 1 0 0 1 1 0 0 1 1 1 1 0]
8 months 前
st = '04_t_a_tx01_3009.txt'; id_cell = regexp(st,'tx\d ','match'); id_char = id_cell{1};
8 months 前 | 0
已解决
guess the formula to transform strings as follows: 'hello world!' --> 'ifmmp xpsme!' 'can i help you?' --> 'dbo j ifm...
9 months 前
已解决
given a vector _v_ and a element _e_, return the number of occurrences of _e_ in _v_. note: nans are equal and there may be n...
9 months 前
已解决
given a matrix a and a matrix b, is a the inverse of b? >>a=[2,4;3,5]; >>b=[-2.5,2;1.5,-1]; >>isinverse...
9 months 前
已解决
9 months 前