Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x =4;
n=3;
y_correct = [1 100 10000];
assert(isequal(Log_vec(x,n),y_correct))
ans =
1 100 10000
|
2 | Pass |
%%
x =2;
n=3;
y_correct = [1 10 100];
assert(isequal(Log_vec(x,n),y_correct))
ans =
1 10 100
|
3877 Solvers
Back to basics 6 - Column Vector
809 Solvers
Basics: Divide integers to get integer outputs in all cases
92 Solvers
101 Solvers
Sum of the Multiplication of Vectors
152 Solvers