Community Profile

photo

Manvi Goel


Last seen: 1년 초과 전 2019년부터 활동

Followers: 0   Following: 0

통계

All
  • Knowledgeable Level 1
  • First Answer
  • Solver

배지 보기

Feeds

보기 기준

문제를 풀었습니다


Sums with Excluded Digits
Add all the integers from 1 to n in which the digit m does not appear. m will always be a single digit integer from 0 to 9. no...

거의 5년 전

문제를 풀었습니다


Balanced number
Given a positive integer find whether it is a balanced number. For a balanced number the sum of first half of digits is equal to...

거의 5년 전

문제를 풀었습니다


Find common elements in matrix rows
Given a matrix, find all elements that exist in every row. For example, given A = 1 2 3 5 9 2 5 9 3 2 5 9 ...

거의 5년 전

문제를 풀었습니다


Find the peak 3n+1 sequence value
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

거의 5년 전

답변 있음
Please help. Error of index out of bounds
The following errors were there in your code: inappropriate spaces in for loops spaces between clear and the variable associat...

거의 5년 전 | 0

| 수락됨

답변 있음
Multiplying 2 Matrices A and B from Scratch (not built in function
Here you go function result = mult(a, b) [r1, c1] = size(a); [r2, c2] = size(b); if( c1 == r2) result...

거의 5년 전 | 2

답변 있음
Display Complete output in Command Window
You can display the output of the matrix by using the disp command. % Let a be the matrix of dim 3200 * 3200 disp(a) % display...

거의 5년 전 | 0

답변 있음
"not equal to" in MATLAB
You can use the ~ instead of ! for not in MATLAB

거의 5년 전 | 3

답변 있음
How to eliminate certain columns from a matrix
Let the matrix be a. You can remove the odd columns of a matrix by : a(:,1:2:end) = [] % 1:2:end runs a loop from 1 till th...

거의 5년 전 | 1

답변 있음
how can we perform 6x6 matrix without values to find the inverse and determination
You can calculate the inverse and determinant of a any n*n matrix using these inbuilt functions: det(x) inv(x)

거의 5년 전 | 0

답변 있음
How can I generate a code for this equation?
You can use the following code for this a = [429.494, 93.112, -6.050]; N = 1024; temp = 0; lambda = zeros(1, N) for i = 1:N...

거의 5년 전 | 0

| 수락됨

답변 있음
Ascii to char conversion and vice versa
You can get the ascii values of a character by double('a') and character value to ascii by char(97)

거의 5년 전 | 0

문제를 풀었습니다


Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...

거의 5년 전

문제를 풀었습니다


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

거의 5년 전

문제를 풀었습니다


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

거의 5년 전

문제를 풀었습니다


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

거의 5년 전

문제를 풀었습니다


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

거의 5년 전

문제를 풀었습니다


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

거의 5년 전

문제를 풀었습니다


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

거의 5년 전

문제를 풀었습니다


Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...

거의 5년 전

문제를 풀었습니다


Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...

거의 5년 전

문제를 풀었습니다


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

거의 5년 전

문제를 풀었습니다


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

거의 5년 전

답변 있음
How can I swap two columns of a matrix in MATLAB?
There is an easy way to extract a column of a matrix in MATLAB Suppose you have a matrix A: A = [1, 2, 3 ; 4, 5, 6] and you...

거의 5년 전 | 1

답변 있음
Randomly initialise a matrix with numbers between 0 and 1?
You can initialise a random matrix with uniform distribution between 0 and 1 by the following: randomMatrix = rand(2,5)

거의 5년 전 | 0

문제를 풀었습니다


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

거의 5년 전

문제를 풀었습니다


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

거의 5년 전

문제를 풀었습니다


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

거의 5년 전

문제를 풀었습니다


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

거의 5년 전

문제를 풀었습니다


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

거의 5년 전

더 보기