統計
MATLAB Answers
3 質問
0 回答
ランク
of 171,279
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
How to compare two elements in an array with not equal operator(~=)?
for i=2:1:length(R) if(R(i)==R(i-1)) else dif=[dif,R(i)]; end end dif=[R(1)]; For e...
7年以上 前 | 0 件の回答 | 0
0
回答質問
How to make an exponential function taking as input a vector?
For example, if my vector is: [2], I'd like to convert this into: [1,n]. Then, if input is:[3] -> [1,n,n^2] and so on...
7年以上 前 | 1 件の回答 | 0
1
回答質問
How to solve recurrence relations (repeted roots)?
clc;clear all; %% syms n P=input('Coefficients of the polynomial P =[...]= '); k=length(P)-1; R=roots(P); a=input('Base ...
7年以上 前 | 0 件の回答 | 0
