photo

BhaTTa


Last seen: 6 days 前 自 2023 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

0 个提问
301 个回答

排名
2,219
of 299,750

声誉
28

贡献数
0 个提问
301 个回答

回答接受率
0.00%

收到投票数
2

排名
 of 20,792

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 165,710

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • 6 Month Streak
  • First Answer

查看徽章

Feeds

排序方式:

已回答
How can i add multiple choices in listbox GUI?
Hey @ANURAG DEEPAK, you can associate the callbacks to your list box, please refer to this documentation: https://www.mathworks....

17 days 前 | 0

已回答
How can I select random number from a range that involves my previous size of data?
Hey @Koko08, below i have attached MATLAB snippet that: picks a contiguous random segment starting at location(i,col1)+21 with t...

17 days 前 | 0

已回答
translation of a 3d node
Hey @Cristiana Abilheira, If you’ve already picked out the three vertex indices of your triangle—say they are i1, i2, i3—and yo...

21 days 前 | 0

已回答
How to make a properablity eqautions
Hey @Rainaire Hansford, I have attached simple MATLAB script that will: Let you specify a range of integers (e.g. 1 to 10). Ra...

21 days 前 | 0

已回答
The orbit diagram for the logistic family
Hey @Zoe Erickson, Here’s a simple way to turn your loops into a proper bifurcation (orbit) diagram for the logistic map Key id...

21 days 前 | 0

已回答
How to make multiple signatures appear in the syntax field of a documentation
Hey @Berenice D'Antonio, you can add additional signatures yourself in the function’s first comment block (text section) by clic...

21 days 前 | 0

已回答
Save data into excel in standalone app
Hey @Oddineus, If you are using MATLAB App Designer, please refer to the below MATLAB Answers to solve your problem: https://www...

21 days 前 | 0

已回答
co-variance Matrix formation
I understand you want to calculate a 6x6 covariance matrix from 6 row vectors (each of size 1x6). Please refer to the solution b...

21 days 前 | 0

已回答
Create a meshgrid on a 3d plot
Hey @Ellisis, you can refer to the code below: % Simple dummy data initialization lon = 270 + 15*rand(500,1); % 500 random ...

21 days 前 | 0

已回答
How do i make a line with a fixed length and fixed y axis move its second point freely within a closed region
Hey @Zain Ahmed, Looking at your code, I understand the issue. You have a semicircular workspace where you want a line of fixed ...

21 days 前 | 0

已回答
How to get rid of NaN when entered value other than numeric value in UI table in appdesigner?
Hey @madhura patil, i have a workaround for you, please refer below: When you enter something that doesn't match, it often defa...

2 months 前 | 0

已回答
How to create random users in a defined area of a circle
Hey @Eugene Fab, Here's how you can modify your code to place three random users within a specified circle (let's say R1 for now...

2 months 前 | 0

已回答
How to use default Excel data for 3d plots in MATLAB
Please refer to this MATLAB Answer : https://www.mathworks.com/matlabcentral/answers/810390

2 months 前 | 0

已回答
While using createMask() function the following error is occuring ? what may be the reason for this? how can I solve this?
Hey @Hridya PI, i assume that error you are facing might be because of the below reason: Toolbox Missing/Not Installed: createM...

2 months 前 | 0

已回答
NEED SOLUTION FOR THE FOLLOWING ERROR
Hey @Pavan Kumar Reddy Yannam, the error means MATLAB can't find a variable or function named tt when it tries to execute line 7...

2 months 前 | 0

已回答
transposing a matrix of panel data
After reading the data into MATLAB workspace you can use repshape and repmat, i have shown with an example below: % --- 1. Crea...

2 months 前 | 0

已回答
Want to create save, save as, new, open tabs
Hey @Avinav Kumar, you can make use Matlab App Designer as an alternative to MATLAB guide, the logic for your requirement in App...

2 months 前 | 0

已回答
Matlab R2019a opens automatically
Hey @Leandro Lecca Villacorta, I assume that it might be problem of autostart , please refer to this answer to fix the issue: ht...

2 months 前 | 0

已回答
1D Random Walk for Multiple Walks
Hey @bk9889, i can see some issues in your code: You have X2avg(i) = X2avg(i) + X(j,i)^.2; The notation <x^2> means the averag...

2 months 前 | 0

已回答
How to extract Number Plate from Car Image
Please refer to this Matlab Answer: https://www.mathworks.com/matlabcentral/answers/197846

2 months 前 | 0

已回答
plotting projectile motion with air resistance
Hey @hawa hassan, please refer to below code where i have plotted the above reqirements, take it as reference and modify accordi...

2 months 前 | 0

已回答
How can we get bluetooth signal strength?
Please refer to the following Matlab Answer: https://www.mathworks.com/matlabcentral/answers/1839658

2 months 前 | 0

已回答
How can calculate the RSSI(Received Signal Strength indicator) values in matlab ?
Please refer to the following Matlab Answer: https://www.mathworks.com/matlabcentral/answers/1839658

2 months 前 | 0

已回答
Can anyone show me an example of the difference between leach-c and leach-h protocols ?
Hey @Martin Sokolov, please refer to following articles: https://www.researchgate.net/publication/330780369_Performance_comparis...

2 months 前 | 0

已回答
can't launch matlab after activation ubuntu 18.04 Licensing error: -8,523.
Hey @wided hechkel, Please refer to this MATLAB Answer thread: https://www.mathworks.com/matlabcentral/answers/481478

3 months 前 | 0

已回答
Static Text update according to GUI List box callback
Hey @Muhammad Salman Arif, You’re comparing the index (a) to literal strings like Natural-Gas, which is incorrect. The Value pro...

3 months 前 | 0

已回答
app designer stuck right after opening
Hey @Dvir Haberman, please refer to following MATLAB Answer thread: https://www.mathworks.com/matlabcentral/answers/313886

3 months 前 | 0

已回答
Issue with different number rows in matlab
Hey @Obinna Mbadozie this is a very common scenario, especially when you have multiple experimental runs or data chunks stored i...

3 months 前 | 0

已回答
fig. file conversion to mp4 or .mov
Hey @Poojitha Thaduri, please refer to this MATLAB Answer thread: https://www.mathworks.com/matlabcentral/answers/614713

3 months 前 | 0

已回答
take mean of consecutive 5 values.
Hey @RUCHI CHOUDHARY, To implement the moving average of cost values and stop the iteration when the mean drops below 0.1, you'l...

3 months 前 | 0

加载更多