hi can any one help me to solve the following error :

1 visualización (últimos 30 días)
ahmed abd alaziz
ahmed abd alaziz el 21 de Sept. de 2016
Comentada: Walter Roberson el 2 de Dic. de 2019
  1 comentario
Walter Roberson
Walter Roberson el 21 de Sept. de 2016
I speculate that your model is either somehow inconsistent or else it has a singularity. Possibly you might need to add some kind of delay in your model (though that would normally show up as a message about an Algebraic Loop)

Iniciar sesión para comentar.

Respuestas (1)

Fahad ALSHUWEIHI
Fahad ALSHUWEIHI el 2 de Dic. de 2019
function F = numericallaplace(f, s)
% Determine size of s array
[M,N] = size(s);
% For each desired s, compute symbolic Laplace integral
for i=1:M
for j=1:N
F(i,j) = integral(..., -100, 100);
end
end

Categorías

Más información sobre General Applications en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by