photo

Ashish Azad


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

Followers: 0   Following: 0

统计学

MATLAB Answers

0 个提问
12 个回答

排名
2,487
of 297,457

声誉
24

贡献数
0 个提问
12 个回答

回答接受率
0.00%

收到投票数
3

排名
 of 20,438

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 158,938

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Revival Level 2
  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
Displaying output in app
Just select the edit field box. On right side you will see Interactivity. There is an editable option, just uncheck it. I hop...

4 years 前 | 0

| 已接受

已回答
plot a surface with different colors on the two sides
Plot them one by one with different colour using "hold on" Read Documenation of "hold on" for further assist

4 years 前 | 0

已回答
Changing elements of vector with matrix
The syntax you are using is very ambiguous and will never work Try for i=1:length(b) a(b(i,1):b(i,2))=1; end Let me kno...

4 years 前 | 1

已回答
plotting graph through while loop
Store the five values in vector, a vector containing values of n_device and a vector containing values of probability to the cor...

4 years 前 | 0

已回答
Simulink - Mask Editor - get_param
The path you are using in string should be in string format: e.g: get_param("KontactSimulation/Kontact/test")

4 years 前 | 0

已回答
Saving error- AppDesigner
Input must be in single quotes for character vector: 'input' and for string it input must be in double quotes: "input" e.g: ap...

4 years 前 | 0

已回答
Need help on returning user defined function to app designer.
Just add a button for conversion and a text area(Edit Field) to display converted unit, Now in the callback function of button,...

4 years 前 | 0

已回答
App Designer Radio Button
Hi Jonathan, A simple solution to this problem is to select the Linear button in the startup function If you are not able to f...

4 years 前 | 1

| 已接受

已回答
Shuffling elements of an array!!
Hi Abhishek, This question is answered earlier too, meanwhile I will provide with the answer too, try to use: lottery(randper...

4 years 前 | 0

| 已接受

已回答
For and while loops
function F = getFacWhile(n) F=1; while n>1 F=F*n; n=n-1; end end function F = getFacWhile(n) ...

4 years 前 | 0

| 已接受

已回答
How to insert a picture in a subsystem mask?
If it is not working there is workaround for this 1)Inside your subsystem file go to edit system mask 2)Go to the "Icon & Por...

4 years 前 | 1

已回答
I am not able to use set_param to change type_options for system mask parameter
Using set_param we can only change the value of a parameter. In this instance you should use parameter object and dot operator ...

4 years 前 | 0

| 已接受