Matlab程式設計問題,matlab程式設計問題

2021-03-03 20:48:16 字數 1504 閱讀 7514

1樓:匿名使用者

挺簡單的,自己做,上道題動、不給採納,自己想想,簡單的積分問題

matlab 程式設計問題 26

2樓:匿名使用者

^題1:基本運算

>> a=[22 33 4;1 3 31;54 2 32];b=[1 4 -3;3 2 3;-3 1 8];

>> a+6*b

ans =[28 57 -14; 19 15 49; 36 8 80]

>> a+b*eye(3,3) %eye——單位矩陣

ans =[23 37 1; 4 5 34; 51 3 40]

>> a*b %矩陣乘法

ans =[109 158 65; -83 41 254; -36 252 100]

>> a.*b %陣列乘法

ans =[ 22 132 -12; 3 6 93; -162 2 256]

>> a^2 %矩陣階乘

ans =[733 833 1239; 1699 104 1089; 2918 1852 1302]

>> a.^2 %陣列階乘

ans =[484 1089 16; 1 9 961; 2916 4 1024]

題2:分式函式

function y=piecewise(t)

if ( t>=0 | t<1 )

y=t.^2;

elseif ( t>=1 | t<=3 )

y=3-t;

elseif ( t>3 | t<=6 )

y=t.^2+2*t+5

end

end

>>t=[0:0.5:6]';

>>y=piecewise(t)

由於題量偏多,其餘問題另行求解。

matlab符號表示式賦值問題,MATLAB符號表示式賦值問題!!!

應這樣來寫,否則認為b是變數符號 syms x b 1 solve sin x cos x b,x ans 0pi 2 我的版本能直接求解,你試著把b設為符號變數看看。syms b b 1 solve sin x cos x num2str b x 定義符號變數x,然後把方程按照符號表示式來寫 而不...

matlab中如何使用if語句,Matlab中如何使用if語句?

巢狀if語句的語法如下 if executes when the boolean expression 1 is true if executes when the boolean expression 2 is true endend 例如 建立指令碼檔案並在其中鍵入以下 a 100 b 200 ...

matlab程式設計,matlab中如何程式設計序進去

a 8 1 1 1 1 1 1 3 3 2 1 1 5 1 1 3 1 1 2 1 1 5 3 3 3 1 1 4 5 1 1 1 1 1 2 2 2 2 4 3 1 5 4 2 1 1 1 2 1 3 1 1 2 2 5 2 1 3 2 5 1 1 3 1 1 1 1 2 1 5 4 2 2 1 ...