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
