Ayush Bansal - MATLAB Central
photo

Ayush Bansal

Last seen: 2 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB AnswersFrom 09/20 to 04/25Use left and right arrows to move selectionFrom 09/20Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 个提问
17 个回答

排名
1,668
of 297,891

声誉
40

贡献数
0 个提问
17 个回答

回答接受率
0.00%

收到投票数
4

排名
 of 20,503

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 159,752

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • 3 Month Streak
  • Revival Level 2
  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
Selecting ROI doesn't work
After selecting the area you need to create the mask by double-clicking, or by right-clicking inside the region and selecting C...

4 years 前 | 0

已回答
Animate a blue box moving around the grid
Create an app using App designer. Use startupFcn callback to execte a function on starting of the app. Use KeyPressFcn callback ...

4 years 前 | 0

已回答
Why can't I use app.UIAxes.CurrentPoint in MATLAB R2018b AppDesigner?
CurrentPoint property for uiaxes was introduced from R2019a. uiaxes was introced in R2016a.

4 years 前 | 0

| 已接受

已回答
How to make same ROI?
Make sure while using poly2mask(x,y,m,n), m and n are same dimension as image otherwise image size will change. Check the script...

4 years 前 | 0

已回答
change in frequency domain with resampling
interp1 have different options to choose from but resample has anti-aliasing filter. Frequency vector will be different for bot...

4 years 前 | 0

| 已接受

已回答
How to apply Hilbert Huang transfer method on the signal Sc(t):
Create a t vector varying from 0 to 0.3s with sampling rate fs t=[0:1/fs:0.3]; [value,idx1]=min(abs(t-0.1)); which will give...

4 years 前 | 0

已回答
I want to fill these 15 equal zones with the different %age value and these values to be depicted by color scale
Use fill(X,Y,C) to fill the polygon having X,Y coordinates, with colour defined by C.

4 years 前 | 1

已回答
Updating GUI Popup Menu in Seperate Callback Function
getappdata is used to retrieve data stored using the setappdata function. setappdata stored data in a UI. Both these functions...

4 years 前 | 0

| 已接受

已回答
Fourier Analysis of a sound wave.
Use Pressure (Pa)=Volts(mv)/sensitivity(mV/Pa) to calculate pressure from voltage. Use max(A) which returns the maximum elemen...

4 years 前 | 0

已回答
How to detect the calling axes from context menu using AppDesigner
Assign the object of ContextMenu to the axes property ContextMenu. Refer to Context Menu for Specific Component example.

4 years 前 | 1

| 已接受

已回答
Message display on basis of no error in app designer Matlab
Use Try/catch to catch the errors and uialert to display error message in the app. Use app.UIFigure (default figure of app) as a...

4 years 前 | 0

| 已接受

已回答
Live Script Editor, 'View Variable' option
View the variable in workspace and check the variable value at every step using step in. Use the function openvar(‘variable n...

4 years 前 | 1

| 已接受

已回答
selecting region of plot for calculations
WindowButtonDown callback function is triggered when mouse button is clicked. Get the current position (i.e. (x,y)) of the poin...

4 years 前 | 1

| 已接受

已回答
How can I draw a cylinder on a cube using pde modeler commad?
The pdeModeler App doesn’t allow user to draw a 3D model. A possible workaround is creating geometry from mesh using volume m...

4 years 前 | 0

已回答
Display 3D binary matrix on a high resolution rectangular grid
For getting image from 3D Binary matrix into a rectangular grid we can use ndgrid function. For exporting the figure in high r...

4 years 前 | 0

已回答
Play, Stop, Pause, Resume and Volume control in Real-Time with Audio System Toolbox
A function to control audio volume directly is not available in MATLAB . Workaround would be controlling system volume in the ...

4 years 前 | 0