photo

Sindhu Priya


自 2017 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

0 个提问
18 个回答

排名
1,654
of 300,853

声誉
42

贡献数
0 个提问
18 个回答

回答接受率
0.00%

收到投票数
8

排名
 of 21,094

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 171,319

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
How to activate the code in a callback from a push button in one GUI from another pushbutton from the other GUI?
Hi Jacob, As you are trying to give a pop-up when delete button is pushed, the callback function of the delete button would h...

8 years 前 | 0

已回答
How can I add information to a uitable by clicking a checkbox and take it out of the table by unclicking it?
Hi Matthew, Please find the following code snippet, this creates a table and checkbox. table = uitable; uicontrol...

8 years 前 | 0

| 已接受

已回答
How to initialize a variable in a GUI?
Hi Antonette, Here is a way to do it using GUIDE. Add the variable to 'handles' parameter of the 'OpeningFcn' of the GUID...

8 years 前 | 4

已回答
1.011 from binary to decimal
Hi Ashleigh, The function 'bi2de' can only be used for integers. Please refer the following link for further information. ...

8 years 前 | 0

已回答
Can I change the font size in the App Designer editor?
Hi Neil, In R2016b there is no option to change the font size in 'App Designer' Regards, Sindhu

9 years 前 | 0

| 已接受

已回答
Why am I getting an 'unable to open file' error when using importdata in my batch run?
Hi Shania, One of the potential reasons causing the issue might be the file path. So, try replacing the line input = 'f...

9 years 前 | 0

已回答
editor occasionally unresponsive on macbook
Hi Jim, Please refer the following link <https://in.mathworks.com/matlabcentral/answers/331547-matlab-r2016b-very-slow-on...

9 years 前 | 0

已回答
Using pcshow on a UI panel
Hi Andre, As far as I know, 'pcshow' does not allow you to plot on any other axes apart from 'figure'. You can use 'scatter3'...

9 years 前 | 0

已回答
Excel link not included in update
Hi Anthony, Please refer this <https://in.mathworks.com/matlabcentral/answers/101350-why-do-i-receive-a-license-checkout-er...

9 years 前 | 0

已回答
Matlab R2016b very slow on Mac OS 10.12.3
Hi Avinash, There could be multiple causes for the same. Please consider the following workarounds : 1. Git™ integration i...

9 years 前 | 2

| 已接受

已回答
How to search a field in a structure and extract all fields that match
Hi Dave, I think, the following code snippet will help you. s.f1= {'Sunday' 'Monday'} s.f2= {'Sunday' 'Monday' ...

9 years 前 | 2

| 已接受

已回答
Java Heap Space Memory Matlab2009b Windows
Hi Lousie, Please follow the steps mentioned <https://in.mathworks.com/help/matlab/matlab_external/java-heap-memory-prefer...

9 years 前 | 0

| 已接受

已回答
How to code the 3 sigma method
Hi Enrico, There is a small mistake in the logic where you compare the upperbound and lowerbound with the actual values. u...

9 years 前 | 0

已回答
How to write a script that is the same as the function rem (remainder)?
If the use case is to get the reminders for the set of numerators with each element from the set of denominator, then using any ...

9 years 前 | 0

已回答
Odd initial figure behavior in R2016b
As MathWorks officially did not support all flavors of linux (check this <https://in.mathworks.com/support/sysreq.html link> for...

9 years 前 | 0

| 已接受

已回答
How to plot multiple lines on one plot using the curve fitting tool
You can try using 'hold on' command to plot multiple curves on a single graph. Refer <http://in.mathworks.com/help/curvefit/f...

9 years 前 | 0

已回答
How to get the sum of of particular column using group by functionality while pulling data from sql using jdbc?
You can try this SQL query to group the data select column1,column2,sum(column3) as column3 from tablename group by column...

9 years 前 | 0