Prithvi Shams
Followers: 0 Following: 0
Statistics
RANK
131.971
of 295.495
REPUTATION
0
CONTRIBUTIONS
2 Questions
2 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
0
RANK
of 20.240
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153.991
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
Feeds
[Assignment]Write a function called saddle that finds saddle points in the input matrix M.
function indices = saddle(M) B = size(M); idx = 0; A = []; %% for i = 1:B(1) for ...
meer dan 4 jaar ago | 0
Write a function called max_sum that takes v, a row vector of numbers, and n, a positive integer as inputs. The function needs to find the n consecutive elements of v whose sum is the largest possible.
Here's my version of the code. While the problem can be solved with movsum() in a single line, it's recommended to utilize if a...
meer dan 4 jaar ago | 0
Question
What is wrong with this code?
I would like to plot the following function where, Ao = 0.2, E = 181e9, Beta = 200, Vo = 0.5 and Va = 0.85. The objective i...
ongeveer 5 jaar ago | 1 answer | 0
1
answerQuestion
Why does my function keep returning zero?
In the following code, my objective is to plug different values of T and alpha into the functon and calculate y for two situatio...
ongeveer 5 jaar ago | 1 answer | 0