photo

Sneham Shrikant Vaidya


Last seen: 4 years ago Active since 2020

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
2 Answers

RANK
7,521
of 297,457

REPUTATION
6

CONTRIBUTIONS
0 Questions
2 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
2

RANK
 of 20,438

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 158,938

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

  • First Answer

View badges

Feeds

View by

Answered
if-statement with conditions.
function out = picker(condition,in1,in2) if condition == 1; out = in1; else out = in2; end \\try this above ...

4 years ago | 2

Answered
Given a matrix "A", how to create a row vector of 1s that has the same number of elements as "A" has rows?
A = [1:5; 6:10; 11:15; 16:20]; A x = [1 1 1 1 ] y = [1;1;1;1;1] z = A*y result =x*z you can also perform this way as we kn...

5 years ago | 0