Statistics
All
RANK
23,004
of 295,467
REPUTATION
1
CONTRIBUTIONS
3 Questions
0 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
2
RANK
8,776 of 20,234
REPUTATION
86
AVERAGE RATING
0.00
CONTRIBUTIONS
2 Files
DOWNLOADS
3
ALL TIME DOWNLOADS
869
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
Function outputs a 1x2 matrix, yet I can't append that matrix to another matrix.
function prop(f,u,q,sq) %Define stuff SQ=[]; Q=[]; g=size(q); %Evaluation of f with q Q=s...
13 years ago | 1 answer | 2
1
answerQuestion
Problem with undefined variable
Hi, I'd like to construct a function Q that has a symbolic expression f(u1,u2,...,ui) as an argument. The thing is that I do...
13 years ago | 1 answer | 0
1
answerQuestion
Peak-finding function doesn't work.
function [M] = peak(A) for j=2:size(A,2) if A(j,2)-A(j-1,2) >= 0 && A(j,2)-A(j+1,2) >= 0 M=[M,A(j,1)]; en...
13 years ago | 1 answer | 0