NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

-----------Dodawanie dowolnej ilości liczb:-------------------------
clc
clear
n=input('podaj ile liczb bedzie = ');
x=1:n;
k=1;
while k<=n
a=input('podaj liczbe= ');
x(1,k)=a;
k=k+1;
end
m=1;
wynik=0;
for m=1:n
liczba=x(1,m);
wynik=wynik+liczba;
m=m+1;
end
disp(['wynik= ',num2str(wynik)])
---------------------------------------------------------------------------------------------------
MNOŻENIE
clc
clear
n=input('podaj liczbe =');
wynik=1;
m=1;
while n<=1

disp('liczba niepoprawna');
n=input('podaj poprawna liczbe =');
end


for m=2:2:n;
wynik=wynik*m;
end
disp(['iloczyn= ',num2str(wynik)]);
----------------------------------------------------------
clc
clear
n=input('podaj liczbe= ');
m=0;
wynik=0;
for m=0:2:n;
wynik=wynik+m;
end
disp(['suma=',num2str(wynik)])
----------------------------------PROGRAM---------------------------------------------------------
%program który po nacisnieciu 1 tworzy wykres hiperboli a pood spodem paraboli, po nacisnieciu 2
%wykres sinus i cosinus, po nacisnieciu 3 uruchania kalkulator.
clc
clear
n=input('podaj numer');
switch n
case 1
subplot(2,1,1)
x=(-5:0.2:5);
a=2;
b=3;
c=12;
d=-5;
y=a*x.*x.*x+b*x.*x+c*x+d;
plot(x,y,'rd-')
xlabel('os x')
ylabel('os y')
legend('parabola')
text(-2,1,'parabola')
grid
subplot(2,1,2)
x2=(-2*pi:0.2:2*pi);
y2=sin(x2);
plot(x2,y2,'y*')
xlabel('os x')
ylabel('os y')
legend('y=sinx')
text(-2,0,'sinx')
grid
case 2
x=(-4*pi:0.2:4*pi);
x2=(-4*pi:0.2:4*pi);
y=cos(x);
y2=sin(x);
plot(x,y,'--*r',x2,y2,'-.g')
xlabel('os x')
ylabel('os y')
legend('cosinus','sinus')
text(-2,1,'sinus')
grid
case 3
a=input('podaj a');
b=input('podaj b');
znak=input('podaj znak + - * /','s');


switch znak
case '+'
suma=a+b;
disp(['suma wynosi ',num2str(suma)])
case '-'
roznica=a-b;
disp(roznica)
case '*'
iloczyn=a*b;
disp(iloczyn)
case '/'
iloraz=a/b;
disp(iloraz)
otherwise
disp('zly znak')
end


otherwise
disp('zla liczba')
end
----------------------------------------------------------------------------------------------------
%program w którym po wcisnieciu 1 uruchamia sie wykres paraboli i cosinus
%po nacisnieciu 2 ruchamia sie silnia wybrnej liczby po nacisnieciu
%uruchamia sie kalkulator za pomoca if
n=input('podaj liczbe')
if n==1
subplot(1,2,1)
x=(0:0.3:3*pi)
y=cos(x)
y2=sin(x)
plot(x,y,'yd--',x,y2,'gp..')
title('parabola')
ylabel('os y')
xlabel('os x')
legend('cosinus','sinus')
text(0,1,'cosinus')
grid
elseif n==2
n=input('podaj silnie')
i=1
silnia=1
while i<=n
silnia=silnia*i
i=i+1
end
disp(['silnia wynosi',num2str(silnia)])
elseif n==3
a=input('podaj liczbe a')
b=input('podaj liczbe b')
n2=input('podaj znak + , - , * , /','s')
if n2=='+'
disp(['suma wynosi ',num2str(a+b)])
elseif n2=='-'
disp(['róznica wynosi ',num2str(a-b)])
else
disp('zły znak')
end
else
disp('zły numer')
end
----------------------------------------------------------------------------------------------------
%1 funkcja liniowa i kwadratowa od 0 do 10 2 to samo tylko na dwóch 3 suma
%kolejnych liczb naturalnych
%wykresach
clc
clear

n=input('podaj liczbe alpha ');
while 1>n || n>3
disp('zly numer')
n=input('podaj liczbe');
end
if n==1
a=2;
b=-3;
b1=2;
c1=6;
a1=3;
x=(0:0.5:10);
y=a*x+b;
y2=a1*x.^2+b1*x+c1;
x1=(0:0.5:10);
plot(x,y,'-.g',x1,y2,'--*r')
legend(' liiniowa','funkcja kwadratowa')
xlabel('os x')
ylabel('os y')
text(2,3,'funkcja')
title('funkcja kwadatowa i liniowa')
grid
elseif n==2
a=2;
b=-3;
b1=2;
c1=6;
a1=3;
x=(0:0.5:10);
y=a*x+b;
y2=a1*x.^2+b1*x+c1;
subplot(1,2,1)
plot(x,y,'-.g')
legend(' liiniowa')
xlabel('os alpha')
ylabel('os y')
text(2,3,'funkcjasigma')
title('funkcja kwadatowa i liniowa^a')
grid
subplot(1,2,2)
plot(x,y2,'--*r')
legend(' kwadratowa')
xlabel('os x')
ylabel('os y')
text(2,3,'funkcja')
title('funkcja kwadatowa')
grid
elseif n==3
suma=0;
n=input('do której liczby czesz dodawac kolejne liczby');
for k=1:1:n
suma=suma+k;
end
disp(['suma kolenych liczb natralnych dla n=',num2str(n),' wynosi ', num2str(suma)])
else
disp('zly numer')
end
----------------------------------------------------------------------------------------------------
%po nacisnieciu 1 wyskakuje funkcja liniowa i parabola
%po nacisnieciu 2 wyskakuje sinus i cosinus na jeden pod drugim
%po nacinieciu 3 liczy iloczyn liczb nieparzystych
clc
clear
n=input('podaj liczbe');
if n==1
x=(-5:0.5:5);
x1=(-5:0.5:5);
a=3;
b=4;
y=a*x+b;
y1=a*x.*x+b;
plot(x,y,'--.g',x1,y1,'-*r')
text(1,1,'liniowa i parabola')
xlabel('os x')
ylabel('os y')
legend('liniowa','parabola')
title('funkcja liniowa i parabola')
grid
elseif n==2
x=(-2*pi:0.5:2*pi);
x1=(-2*pi:0.5:2*pi);
a=3;
b=4;
y=a*x+b;
y1=a*x.*x+b;
subplot(2,1,1)
plot(x,y,'--.g')
text(1,1,'sinus')
xlabel('os x')
ylabel('os y')
legend('sinus')
title('funkcja sinus')
grid
subplot(2,1,2)
plot(x1,y1,'-*r')
text(1,1,'cosinu')
xlabel('os x')
ylabel('os y')
legend('cosinus')
title('funkcja cosinus')
grid
elseif n==3
m=input('podaj do której liczy ma liczyc iloczyn');
iloczyn=1;
for k=1:2:m
iloczyn=iloczyn*k
end
disp(['iloczyn liczby ',num2str(m),' wynosi ', num2str(iloczyn)])
else
disp('zły numer')
end
---------------------------------------------------------------------------------------------------
%1 funkcja sinus 2 sinus cosius 3 policzyc silnie
clc
clear
n=input('podaj liczbe');
while n<1 || n>3
disp('zła liczba')
n=input('podaj liczbe');
end
switch n
case 1
x=(0:0.5:10);
y=sin(x);
plot(x,y,'--*r')
text(1,1,'sinus')
xlabel('os x')
ylabel('os y')
title('wykres sinus')
legend('sinus')
grid
case 2
x=(-5:0.5:8);
x1=(-5:0.5:8);
y=sin(x);
y1=cos(x);
plot(x,y,'--*r',x1,y1,'-.g')
text(1,1,'sinus i cosinus')
xlabel('os x')
ylabel('os y')
title('wykres sinus i cosinus')
legend('sinus','cosinus')
grid
case 3
n=input('podaj silnie');
silnia=1;

for k=(1:1:n)
silnia=silnia*k;
end
disp(['silnia wynosi ', num2str(silnia)])
otherwise
disp('zła liczba')
end





     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.