photo

Vasilis Chasiotis


Last seen: 5 years ago Active since 2020

Followers: 0   Following: 0

Statistics

MATLAB Answers

6 Questions
1 Answer

RANK
170,944
of 300,508

REPUTATION
0

CONTRIBUTIONS
6 Questions
1 Answer

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
0

RANK
 of 21,019

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 169,435

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • First Answer
  • First Review
  • Thankful Level 1

View badges

Feeds

View by

Answered
How to explore off diagonal elements in matrices without avoiding the for loop?
A = randn(n,n); % a n-by-n matrix of random numbers idx = eye(n,n); % the identity matrix of order n if all( A(~idx) > K ) % c...

5 years ago | 0

Question


Take specific elements from each cell of a cell array
Hello! Let A be a 1x10 cell array. Each of the 10 cells of A are nxm matrices. Also, let an 1x10 vector x, that is, x=[ x1 x2 ....

5 years ago | 1 answer | 0

1

answer

Question


Different number of for loops
I want my input to be a number at least 9 or 10, say n, and I need a code to create n number of for loops. I need to change the ...

5 years ago | 2 answers | 0

2

answers

Question


Restricted integer compositions with fixed number of parts and different bounds for each part
There are functions from which restricted integer compositions with fixed number of parts can be obtained, like *colex*, *jdoric...

5 years ago | 0 answers | 0

0

answers

Question


How to create permutations of multisets?
I have a vector with N=6 elements and q=3 elements symboled as 0, 1, 2. I want to create all vectors consisted of N=6 elements ...

5 years ago | 1 answer | 0

1

answer

Question


Change a variable's value wherever exists
I have the following code: syms a x = a+1; a = 2; However, the value of x is equal to a+1. Because I put a=2, how can I ta...

5 years ago | 1 answer | 0

1

answer

Question


Swap all the values in a vector
I have the vector x=[1 2 3 4 5 6 7 8] and I want to create another one in which I have swaped the elements as (17)(24)(38)(56), ...

5 years ago | 1 answer | 0

1

answer