Ashish Azad
Followers: 0 Following: 0
Estadística
0 Preguntas
12 Respuestas
CLASIFICACIÓN
2.461
of 295.569
REPUTACIÓN
24
CONTRIBUCIONES
0 Preguntas
12 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
3
CLASIFICACIÓN
of 20.247
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.105
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
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...
más de 4 años hace | 0
| aceptada
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
más de 4 años hace | 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...
más de 4 años hace | 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...
más de 4 años hace | 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")
más de 4 años hace | 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...
más de 4 años hace | 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,...
más de 4 años hace | 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...
más de 4 años hace | 1
| aceptada
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...
más de 4 años hace | 0
| aceptada
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) ...
más de 4 años hace | 0
| aceptada
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...
más de 4 años hace | 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 ...
más de 4 años hace | 0
| aceptada