photo

Christian Muñoz


Active since 2017

Followers: 0   Following: 0

Message

Statistics

MATLAB Answers

4 Questions
1 Answer

RANK
250,274
of 301,440

REPUTATION
0

CONTRIBUTIONS
4 Questions
1 Answer

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
0

RANK
 of 21,282

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 174,580

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


How to find the intersection point of two vector arrays?
if true v1=[ 0 4.4847 8.9694 13.4541 18.3872 22.8719 26.2803 30.0474 33.7248 39.1962 45.2056 50.3182 ...

8 years ago | 1 answer | 0

1

answer

Answered
How to step-wise iterate for every element of a vector in a while-loop?
After some hours, I think I found the solution. I do not think it is a beautiful solution, but it makes the job :) ...

8 years ago | 0

| accepted

Question


How to step-wise iterate for every element of a vector in a while-loop?
vec= [1 1 1 1 3 1 4 1 1 5 5]'; myOffset=0.05; nonOnes=find(vec>1); % Find elements > 1 N=vec(nonOnes)...

8 years ago | 1 answer | 0

1

answer

Question


Which is the most appropiate loop if I want to create a vector myOrder(n) with random values?
Want to create a vector myOrder(n) from 1:Sum with random values vec= [1 1 1 1 3 1 4 1 1 5 5]'; Sum=sum(vec); for n...

8 years ago | 2 answers | 0

2

answers

Question


How can I replicate elements of a vector of into another
How can I replicate elements of a vector of into another? v1=ones(12,1); v2=[1 1 1 1 3 1 4] I would like to get a v3 ...

8 years ago | 2 answers | 0

2

answers