You are on page 1of 1

function [Y] = joder(A)

A=input('ingrese la matriz A;');


[V,D]=eig(A)
H=inv(V)
R1=exp(D)
R2=V*R1
Y=R2*H
clc

end

You might also like