want to plot this function: y=1/(x^2-1)
>>x = -3:0.1:3;y = 1/(x.^2-1);
??? error using ==> mrdivide
matrix dimensions must agree.
>> x = -3:0.1:3;y = 1/(x^2-1);
??? error using ==> mpower
matrix must be square.
>> x = -3:0.1:3;y = (x^2-1);
??? error using ==> mpower
matrix must be square.
>> x = -3:0.1:3;y = (x.^2-1);
works...
but, how to plot y=1/(x^2-1)?
ok, here is the right answer, we need to add dot before divide operator, too
x = -3:0.1:3;y = 1./(x.^2-1);
analysis:
x = -3:0.1:3; -> makes x a array of size 1x31
m = (x.^2-1); -> makes m a array of size 1x31,too
s
fputcsv命令,寫csv檔案,遇到的小問題
move method 概述 程式中,有個函式與其所駐class之外的另乙個class進行更多交流,呼叫後者或被後者呼叫 動機 motivation 如果乙個class有太多行為,或如果乙個class與另乙個class有太多合作而形成高度耦合 highly coupled 我們就會搬移函式。通過這種...
fputcsv命令,寫csv檔案,遇到的小問題
命令 fputcsv 命令格式 intfputcsv resource handle array fields string delimiter string enclosure 命令解析 fputcsv 將一行 用 fields陣列傳遞 格式化為 csv 格式並寫入由 handle指定的檔案。返回...
electron vue build遇到的問題
受限於牆以及網路環境,很多人在嘗試打包electron程式時都會碰到各種問題,下面以electron vue模板為例 打包使用electron builder windows環境下,一步步解決打包時所遇到的錯誤。下面三個檔案操作同步驟2 3.wincodesign 1.9.0.7z 4.nsis 3...