Question: why does my syms appear as error clc;clear all;format compact; syms f g x 1 = input ( ' puntos para ( x ) ?

why does my syms appear as error
clc;clear all;format compact;
syms f g
x1=input('puntos para (x)?')
x=linspace(-8*pi,7*pi,x1);
y1=input('puntos para (y)?')
y=linspace(-4*pi,10*pi,y1);
r=input('que funcion desea graficar? f g');
if r==f
f1=sin(x);
plot(f1)
elseif r==g
g1=sin(y)-6;
plot(g1)
else
disp('error')
end

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!