Want to make code for inverse Elzaki Transform like ilaplace
Mostra commenti meno recenti
Hello
Want to make code for inverse Elzaki Transform like ilaplace
my code not woking in function.m file trying to make code like bultin code of ilaplace
function [T]=iElzaki(E)
% syms v t s E f n a b
% assume (n>2);
% v=1/s;
% F=v^(2);
f=(Elzaki(E));
f=ilaplace(s*E);
% pretty(T)
end
below code is woking
clc;
clear;
close all;
syms v t s E f n a b
v=1/s;
E=v^(2);
% T=iElzaki(E)
f=ilaplace(s*E);
pretty(f)
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Calculus in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!