Community Profile

photo

Kolluru Yaswanth


最后一个见面:大约un anno以前|Active since 2021

Statistics

  • Matlab Master简介
  • 求解器

查看徽章

Content Feed

查看

解决了


将所有整数从1到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.

大约un anno前

解决了


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

大约un anno前

解决了


Make a random, non-repeating vector.
这是一个基本的MATLAB操作。它是出于教学目的。--- If you want to get a random permutation of integer...

大约un anno前

解决了


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

大约un anno前

解决了


Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...

大约un anno前

解决了


Return the first and last characters of a character array
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

大约un anno前

解决了


创建时间表
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

大约un anno前

解决了


Getting the indices from a vector
这是一个基本的MATLAB操作。它是出于教学目的。---您可能已经知道如何

大约un anno前

解决了


Determine whether a vector is monotonically increasing
如果输入矢量的元素单调增加(即每个元素都大于上一个),则返回true。返回...

大约un anno前

解决了


检查矢量中是否存在数字
返回1如果数字_a_存在于vector _b_中,否则返回0。a= 3;b = [1,2,4];返回0。a= 3;b = [1,...

大约un anno前

解决了


Swap the first and last columns
翻转矩阵A的最外层列,使第一列变为最后一列,最后一列成为第一个。全部...

大约un anno前

解决了


Swap the input arguments
编写一个两输入的两输出函数,该函数交换其两个输入参数。例如:[q,r] =交换(5,10)返回q = ...

大约un anno前

解决了


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...

大约un anno前

解决了


Reverse the vector
反转矢量元素。示例:输入x = [1,2,3,4,5,6,7,8,9]输出y = [9,8,7,6,5,4,3,2,1]

大约un anno前

解决了


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

大约un anno前

解决了


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <

大约un anno前

解决了


三角数
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

大约un anno前

解决了


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...

大约un anno前

解决了


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

大约un anno前

解决了


矩阵中的最大值
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

大约un anno前

解决了


Return area of square
Side of square=input=a Area=output=b

大约un anno前

解决了


寻找完美的正方形
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...

大约un anno前

解决了


Add two numbers
Given a and b, return the sum a+b in c.

大约un anno前

解决了


Find the sum of all the numbers of the input vector
找到输入向量X的所有数字的总和。示例:输入x = [1 2 3 5]输出y是11输入x ...

大约un anno前