hhghfhgf

pdf > download > ebook > pobieranie > do ÂściÂągnięcia

hhghfhgf, MathLab

[ Pobierz całość w formacie PDF ]
To get started, select "MATLAB Help" from the Help menu.Warning: Failure restoring previous desktop configuration.The configuration file is missing or out of date. Usingdefault configuration.??? Name is nonexistent or not a directory>> a=[1 2 3 4 5; 1,2,1,2,1;3:-1:-1]a =1 2 3 4 51 2 1 2 13 2 1 0 -1>> b=[1:5;1 2 1 2 1;3:-1:-1]b =1 2 3 4 51 2 1 2 13 2 1 0 -1>> a1='abcd'a1 =abcd>> p=diff('x^2')p =2*x>>>>>> c2=2c2 =2>> druga poch =diff(('-2*cos(x)*sin(x)-1/4*pi)*exp(cos(x)^2-1/4*pi*x)')??? druga poch =diff(('-2*cos(x)*sin(x)-1/4*pi)*exp(cos(x)^2-1/4*pi*x)')|Error: Missing operator, comma, or semicolon.>> c2=2c2 =2>> f=[0;5;-10]f =5-10>> p=diff('x^2')p =2*x>> 1./[1 2]ans =1 0.5>> k=10k =10>> k=1:10k =1 2 3 4 5 6 7 8 9 10>> k*sin[4*pi/7]??? k*sin[4*pi/7]|Error: Missing operator, comma, or semicolon.>> k*sin[4*pi]/7??? k*sin[4*pi]/7|Error: Missing operator, comma, or semicolon.>> k*sin(4*pi)/7ans =Columns 1 through 6-6.998e-017 -1.3996e-016 -2.0994e-016 -2.7992e-016 -3.499e-016 -4.1988e-016Columns 7 through 10-4.8986e-016 -5.5984e-016 -6.2982e-016 -6.998e-016>> k=10k =10>> k*sin(4*pi)/7ans =-6.998e-016>> 5^kans =9765625>> k=1:10k =1 2 3 4 5 6 7 8 9 10>> 5^k??? Error using ==> ^Matrix must be square.>> 1/5^k??? Error using ==> ^Matrix must be square.>> 1:5^k??? Error using ==> ^Matrix must be square.>> k^1:5??? Error using ==> ^Matrix must be square.>> k^1/5??? Error using ==> ^Matrix must be square.>> pierw5??? Undefined function or variable 'pierw5'.>> pier5??? Undefined function or variable 'pier5'.>> k=1:10;>> k= 1:10;>> w1=k* sin(4*pi/7)w1 =Columns 1 through 60.97493 1.9499 2.9248 3.8997 4.8746 5.8496Columns 7 through 106.8245 7.7994 8.7744 9.7493>> w2= k.^(1/5)w2 =Columns 1 through 61 1.1487 1.2457 1.3195 1.3797 1.431Columns 7 through 101.4758 1.5157 1.5518 1.5849>> w3= sin(36*pi/180)./(k* cos(pi/4));>> w3= sin(36*pi/180)./(k*cos(pi/4));>> w3= sin(36*pi/180)./(k* cos(pi/4));>> w3= sin(36*pi/180)./(k* cos(pi/4))w3 =Columns 1 through 60.83125 0.41563 0.27708 0.20781 0.16625 0.13854Columns 7 through 100.11875 0.10391 0.092362 0.083125>> w4= (sin(7) +k)./(k+exp(1.5))w4 =Columns 1 through 60.30228 0.40992 0.48879 0.54906 0.59662 0.63511Columns 7 through 100.66689 0.69357 0.7163 0.73589>> w5= 3* sin((3*pi+1)./k).^(-2)w5 =Columns 1 through 64.2368 3.8953 28.023 11.526 3.9571 3.0849Columns 7 through 103.02 3.2257 3.5745 4.022>> w6= k./(2* log(9.1+ pi)/log(4)??? w6= k./(2* log(9.1+ pi)/log(4)|Error: ")" expected, "end of line" found.>> w6= k./(2* log(9.1+pi)/log(4)??? w6= k./(2* log(9.1+pi)/log(4)|Error: ")" expected, "end of line" found.>> w6= k./(2*log(9.1+pi)/log(4)??? w6= k./(2*log(9.1+pi)/log(4)|Error: ")" expected, "end of line" found.>> w6= k./(2*log(9.1+pi)/log(4))w6 =Columns 1 through 60.27672 0.55345 0.83017 1.1069 1.3836 1.6603Columns 7 through 101.9371 2.2138 2.4905 2.7672>> [ k' w1' w2' w3' w4' w5' w6']ans =Columns 1 through 61 0.97493 1 0.83125 0.30228 4.23682 1.9499 1.1487 0.41563 0.40992 3.89533 2.9248 1.2457 0.27708 0.48879 28.0234 3.8997 1.3195 0.20781 0.54906 11.5265 4.8746 1.3797 0.16625 0.59662 3.95716 5.8496 1.431 0.13854 0.63511 3.08497 6.8245 1.4758 0.11875 0.66689 3.028 7.7994 1.5157 0.10391 0.69357 3.22579 8.7744 1.5518 0.092362 0.7163 3.574510 9.7493 1.5849 0.083125 0.73589 4.022Column 70.276720.553450.830171.10691.38361.66031.93712.21382.49052.7672>> diary>> diary('cwiaczenie.txt')>> d= ((2.8+3.3)/(21.1 *k))-((2.2-3.7)/12.7).^2??? Error using ==> /Matrix dimensions must agree.>> d= ((2.8+3.3)./(21.1 *k))-((2.2-3.7)./12.7).^2d =Columns 1 through 60.27515 0.1306 0.082416 0.058325 0.04387 0.034233Columns 7 through 100.02735 0.022187 0.018172 0.01496>> [k' d']ans =1 0.275152 0.13063 0.0824164 0.0583255 0.043876 0.0342337 0.027358 0.0221879 0.01817210 0.01496>> d= ((2.8+3.3)./(21.1 *k))-((2.2-3.7)./12.7).^2 ./((1.543-1.8)*((4.3-3.2 *k).^-2/4)??? d= ((2.8+3.3)./(21.1 *k))-((2.2-3.7)./12.7).^2 ./((1.543-1.8)*((4.3-3.2 *k).^-2/4)|Error: ")" expected, "end of line" found.>> d= ((2.8+3.3)./(21.1 *k))-((2.2-3.7)./12.7).^2 ./((1.543-1.8)*((4.3-3.2 *k).^-2/4))d =Columns 1 through 60.55182 1.1021 6.1953 15.759 29.78 48.251Columns 7 through 1071.172 98.542 130.36 166.62>> [k' d']ans =1 0.551822 1.10213 6.19534 15.7595 29.786 48.2517 71.1728 98.5429 130.3610 166.62>> d= ((2.8+3.3)./(21.1 *k)-(2.2-3.7)./12.7)).^2 ./((1.543-1.8)*((4.3-3.2 *k).^-2/4))??? d= ((2.8+3.3)./(21.1 *k)-(2.2-3.7)./12.7)).^2 ./((1.543-1.8)*((4.3-3.2 *k).^-2/4))|Error: Missing operator, comma, or semicolon.>> d= ((2.8+3.3)./(21.1 *k)-((2.2-3.7)./12.7)).^2 ./((1.543-1.8)*((4.3-3.2 *k).^-2/4))d =Columns 1 through 6-3.1228 -4.7354 -20.111 -40.76 -65.945 -95.554Columns 7 through 10-129.57 -168.01 -210.86 -258.13>> [f' d']??? Error using ==> horzcatAll matrices on a row in the bracketed expression must have thesame number of rows.>> [d']ans =-3.1228-4.7354-20.111-40.76-65.945-95.554-129.57-168.01-210.86-258.13>> [k' d']ans =1 -3.12282 -4.73543 -20.1114 -40.765 -65.9456 -95.5547 -129.578 -168.019 -210.8610 -258.13>> d= (((2.8+3.3)./(21.1 *k)-((2.2-3.7)./12.7)).^2) ./((1.543-1.8)*((4.3-3.2 *k).^-2/4))d =Columns 1 through 6-3.1228 -4.7354 -20.111 -40.76 -65.945 -95.554Columns 7 through 10-129.57 -168.01 -210.86 -258.13>> [k' d']ans =1 -3.12282 -4.73543 -20.1114 -40.765 -65.9456 -95.5547 -129.578 -168.019 -210.8610 -258.13>> d= (((2.8+3.3)./(21.1 *k)-((2.2-3.7)./12.7)).^2) ./(((1.543-1.8)*((4.3-3.2 *k).^-2)./4))d =Columns 1 through 6-3.1228 -4.7354 -20.111 -40.76 -65.945 -95.554Columns 7 through 10-129.57 -168.01 -210.86 -258.13>> [k' d']ans =1 -3.12282 -4.73543 -20.1114 -40.765 -65.9456 -95.5547 -129.578 -168.019 -210.8610 -258.13>> d= (((2.8+3.3)./(21.1 *k)-((2.2-3.7)./12.7).^2) ./(((1.543-1.8)*((4.3-3.2 *k).^-2)./4))??? d= (((2.8+3.3)./(21.1 *k)-((2.2-3.7)./12.7).^2) ./(((1.543-1.8)*((4.3-3.2 *k).^-2)./4))|Error: ")" expected, "end of line" found.... [ Pobierz całość w formacie PDF ]
  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • chiara76.opx.pl
  •