CAPIA LAYME JESUSA GUADALUPE 1.a. - Ingresar desde el teclado el valor de r y resolver el siguiente sistema de ecuaciones si r toma valores negativos. 2.a.- Ingresar el volumen, temperatura (solo valores entre -15 a 30) y número de moles. Calcular la presión cuando R=0.082 (p=(nRT)/V). clear all;clc; V=input('ingrese un valor de Volumen: '); T=input('ingrese un valor de Temperatura: '); g=input('ingrese un valor de numero de moles: '); R=input('ingrese un valor de R: '); if R==0.082 P=(P*V)/(n*R*T); P=num2str(R); disp(['la presion es' : num2str(P)]); else disp('la respuesta es '); end 3.a.- ingresar valor inicial, final y número de puntos. Graficar la función y=x^3+sqrt(x/2)+4, si el valor inclc;clear all; x=input('ingrese valores de x: '); h=x^3+sqrt(x/2)+4; disp('la ecuacion es '); disp(h); [x,h]=meshgrid(-2:0.5:2); icial es menor al valor final. 4.- a=[15 3 22; 3 8 5; 14 3 82]; b=[1;5;6]; c=[12 18 5 2]; d=a(:,3); e=[b,d]; f=[b;d]; g=[a;c(:,1:3)]; h=[a(1,3),c(1,2),b(2,1)];