photo

Rini Varghese


Johns Hopkins University

Last seen: 1 month 前 自 2016 起处于活动状态

Followers: 0   Following: 0

消息

Postdoctoral Research Fellow

Programming Languages:
MATLAB

统计学

MATLAB Answers

0 个提问
6 个回答

排名
952
of 299,759

声誉
82

贡献数
0 个提问
6 个回答

回答接受率
0.00%

收到投票数
38

排名
 of 20,794

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 165,756

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Answer

查看徽章

Feeds

排序方式:

已回答
How can I make the 'plot' function markers and lines transparent using 'alpha' or otherwise?
not sure if anyone is still following this, but for MATLAB's 'plot' function, color and transparency are specified as a 4 elemen...

5 years 前 | 25

已回答
How to make only x-axis invisible (y-axis stays visible)?
Try the following: h = gca; h.XAxis.Visible = 'off';

7 years 前 | 3

已回答
Setting axes with center in origin (0,0) in plotted variables.
A relatively straightforward solution to this is now available directly through MATLAB's axes option: ax = gca; ax.XAxisLocati...

7 years 前 | 8

已回答
get(0,'ScreenSize') can not get right screen size
Posted a solution to a similar problem here: <https://www.mathworks.com/matlabcentral/answers/165216-figure-of-screen-size#answe...

8 years 前 | 0

已回答
Figure of screen size
One solution to bypass the problem of being connected to different screens that might have different resolution (screen sizes), ...

8 years 前 | 1

已回答
Define a RGBa color- transparency
You can modify most object colors with 4 input arguments (RGBa notation) in MATLAB (2015). E.g. rectangle(x,y,w,h,'facecolor',[0...

9 years 前 | 1