Community Profile

照片

亚当·丹兹(Adam Danz)

数学工作

上次见:4天前|自2014年以来活跃

统计数据

All
  • MATLAB迷你黑客参与者
  • Knowledgeable Level 4
  • Most Accepted 2021
  • Solver
  • Personal Best Downloads Level 4
  • 资源管理器
  • 复兴级别4
  • 36 Month Streak
  • 掌握
  • Thankful Level 5
  • 编辑的选择
  • First Review

View badges

内容提要

回答
使用OpenFig创建瓷砖布局
Call gca with the figure handle so you know it's accessing the axes within the figure you just opened (assuming there is only 1 ...

26 days ago | 0

回答
Why does using 'ButtonDownFcn' function disable datatip?
>为什么使用“ buttondownfcn”函数禁用datatip?当您单击对象时,对象不知道您的intentio ...

1month ago | 0

回答
我可以在2016a应用程序设计师中使用ginput(或模拟)吗?
ginput在MAT金宝appLAB R2020B开始的AppDesigner数字中支持有关更多信息:https://www.tatmou.com/matlabcentral/...

1month ago | 0

|accepted

回答
Live scripts: Get axes handle of figure NOT stored in live script.
这就是为什么应该避免GCA的原因。以下是一些解决方案,按照健壮金宝搏官方网站的顺序。更改功能,使其...

1month ago | 1

回答
Error using plot, "vectors much be same length"
尝试,x = linspace(-1.5,1.5,numel(sxx))图(x,sxx)

1month ago | 1

|accepted

回答
每个酒吧的多种颜色和传说
ColorBar选项这是基于此线程的解决方案。bardata = rand(1,5);数字();bh = bar(bardata);% 放...

1month ago | 0

回答
Extract data from raster plot
假设您没有生成数字开始的数据,请尝试从文件交换中获取。它估计CO ...

1month ago | 0

回答
在Boxplot中绘制负值
You could add a second axes that zooms into the small, negative values. [NUM_w,TXT_w,RAW_w] = xlsread("data_boxplot"); flow_...

1month ago | 0

回答
heatmap color RGB data for manaully created image
See the 5 lines of code under "new section". I didn't change anything else. % Given data: the sum of Data is equal to 1 % su...

1month ago | 0

回答
Event on GIF reset
在不知道最终目标的情况下,我不确定这会有用,但听起来您要寻找的东西可以计算或...

1month ago | 0

|accepted

回答
how can I plot y = (cos(t-2)/4)(rect(t+1)/6 )?
is it correct way to write tht code ? The line of code looks functional without knowing any other details including what rect i...

1month ago | 0

回答
Grouping rows on the first column and obtain minimum value on second column
a = [13 7 13 6 13 5 13 6 12 7 12 5];b = groupsummary(a,a(:,1),'min')注意,根据groupi ...

1month ago | 0

回答
Changing layers on a bar graph
Plot the green bars first, before the bar plot. Alternatively use uistack to control the stacking order of graphics objects.

1month ago | 0

|accepted

回答
如何使用散射组织图固定不同的星座?
scatterhistogram produces a ScatterHistogramChart object within a figure. When you call hold on, an axes is created if it doesn...

1month ago | 1

回答
Is statistics and machine learning toolbox really required for gscatter plotting?
Here's a workaround I shared a while back using arrayfun. //www.tatmou.com/matlabcentral/answers/574957-how-can-i-ma...

1month ago | 0

回答
在图中添加字幕?
如果您使用MATLAB R2020B或更高版本,请使用子图函数。如果您在发布之前使用MATLAB,则可以添加...

1month ago | 0

|accepted

回答
adding title to plots in Tiled Layout increase the Tile spacing
将图例分配给TiledChartlayout对象而不是轴。演示:t = tiledlayout(5,1,'tilespacing','tight','paddin ...

2个月前|0

|accepted

回答
编写更有效的MATLAB代码以检验零假设(T和P值)
Assuming your table has variable names shown in your image, % Read the table from the csv file table = readtable('scores.csv'...

2个月前|0

|accepted

回答
boxchart框位置在“ groupByColor”时与Xaxis标签不匹配
您从文档(链接)共享的示例使用分组数据。小组以X键为中心。如果你是错误的...

2个月前|0

|accepted

回答
用指定半径和离散化的地理泡沫
The sizedata argument in geobubble determines the relative sizes of the bubbles. If you want to specify the absolute size of th...

2个月前|0

回答
直方图垃圾箱位置放置文本以获取分类数据
由于您的X-DATA是分类的,因此您正在与一个分类统治者合作。这使得很难将文本定位在数字...

2个月前|1

回答
TileDlayout在2x3网格中没有间距显示
Imshow将轴适合您的图像大小。如果您不希望轴拧紧轴正常。这会扭曲您的图像...

2个月前|0

回答
Change font size on plot but it's cut-off
Suggestion 1: used tiledlayout Axes produced in tiledlayout usually handle these situations better. Suggestion 2: check the P...

2个月前|0

回答
“ chaseplot”不显示自我vhicle?
chasePlot is outside my area of expertise but I did some digging found that if you change the ViewLocation of the scene then you...

2个月前|0

|accepted

回答
删除最高值直到达到特定值的循环
a = randi(13,10);而sum(a,'all','omitnan')> 20 [〜,idx] = max(a(a(:),[],'omitnan');a(idx)= nan;结束Isremove ...

2个月前|0

|accepted

回答
如何在不使用Hist的情况下绘制图形之类的图形
>but when I use hist it omits the equal values hist does the binning, counting, and produces the plot. If "17" occurs 3 times,...

2个月前|1

回答
用置换创建字符串
I believe this is what you're working toward. Axes_name = {'sint0.2';'sint0.5';'sint0.7'}; fold_2 = {'BCA';'BPCA';'DLA';'DLCA'...

2个月前|0

|accepted

回答
Saving multiple figures together to a PDF
Thanks for providing the code! The question title makes it seems like you're plotting multiple figures but your code shows that...

2个月前|0

回答
图和栏,带有下降数据和双Yaxes
您将绿线添加到左Y轴上。将这两条线图(Y1,'green')右%切换到yyaxis ri ...

2个月前|0

回答
哪种方差分析测试以及如何使用?
我建议使用自举置信区间。这个想法是通过替换重新置于准确性数据并计算...

2个月前|0

装载更多