0
這是一個從這個question爲什麼有效的聲明會在MATLAB中給出錯誤?
爲什麼這兩個解決方案不起作用,雖然看起來很有效,我:
>> t = -pi:0.1:pi;
>> r = ((sin(t)*sqrt(cos(t)))*(sin(t) + (7/5))^(-1)) - 2*sin(t) + 2 ;
??? Error using ==> mtimes
Inner matrix dimensions must agree.
>> t = -pi:0.1:pi;
>> r = ((sin(t).*sqrt(cos(t))).*(sin(t) + (7/5)).^(-1)) - 2*sin(t) + 2 ;
>> plot(r,t)
??? Error using ==> plot
Vectors must be the same lengths.
這有什麼錯以上?
順便說一句,你是什麼意思的「內矩陣維度」? – user198729 2010-05-04 19:09:11
對於「A * B」操作,內部矩陣維數是「A」的列和「B」的行,它們必須等於執行矩陣乘法。 – gnovice 2010-05-04 19:11:29
由於沒有明確提及它,「虛部」來自哪裏? – user198729 2010-05-04 19:12:16