Mughees Asif
Followers: 0 Following: 0
Estadística
10 Preguntas
0 Respuestas
CLASIFICACIÓN
29.225
of 295.486
REPUTACIÓN
1
CONTRIBUCIONES
10 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
60.0%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
of 20.236
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.950
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
Pregunta
Displaying empty array as output
function B=IsStable(polynomial) if AllNonZero(polynomial) == false H = []; B = 0; elseif AllSameSign(polynomial) == false H...
más de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
Error in while loop
function IsStable(polynomial) if AllNonZero(polynomial) == false H=[] elseif AllSameSign(polynomial) == false H=[] ...
más de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
Calling multiple .m files into separate function
function [B, H] = IsStable(polynomial) if polynomial ~= AllNonZero(polynomial(false)) B=0; H=[]; elseif polynomial ~...
más de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
Calling another .m file function
function IsStable(polynomial) AllNonZero(polynomial) AllSameSign(polynomial) length(polynomial); while 1i==1:polynomial...
más de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
Basic function to find value
Hi, I have the following function which should consume a row vector and return a value of 1, if non of the elements are 0 in the...
más de 5 años hace | 2 respuestas | 0
2
respuestasPregunta
Graph limits and area
I have the following code: x = linspace(-5, 5, 1000); y1 = -x; y2 = x.^2-4; lidx = y1 >= y2; figure set(findobj(gcf,'type'...
más de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
Highlight specific area of graph.
I have the following code: syms x y y = -x; fplot(x, y, 'k') hold on y = x.^2-4; fplot(x, y, 'k') hold off xlim([-5 5])...
más de 5 años hace | 1 respuesta | 1
1
respuestaPregunta
Double output using disp()
The following code gives two outputs when I have only one disp() command at the end: characteristic = [1.000 2.2500 2.5002]...
más de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
Signs in the output.
h = [-1 -2 0] j=sqrt(sum(h.^2)); %Number conversion into string format k=num2str(h(1)); l=num2str(h(2)); m=num2str(h(3)); ...
casi 6 años hace | 2 respuestas | 0
2
respuestasPregunta
Calculating dot product of 2 3 dimensional row vectors
x=input('Enter the 1st pair of 3 vector elements in [square brackets]: '); if (x~=3); disp('The vectors elements cannot c...
casi 6 años hace | 1 respuesta | 0