Community Profile

photo

Guoyi Xu

MathWorks

Last seen: 2年弱 前 2022 年からアクティブ

統計

  • Draw Letters
  • Matrix Manipulation II Master
  • Promoter
  • Community Group Solver
  • CUP Challenge Master
  • Commenter
  • Tiles Challenge Master
  • Solver

バッジを表示

Content Feed

表示方法

解決済み


Sum the rows
Sum the rows of the given matrix. Example x = [ 1 2 3 4 ] y = [ 3 7 ]

約2年 前

解決済み


wipe out!
make all the elements in given x zero.

約2年 前

解決済み


determine if
determine if the elements of a matrix is a nan and return true

約2年 前

解決済み


Find the missing numbers.
Total *N* numbers are in the series of natural numbers ( *1,2,3,...,N* ). The input is an array (unsorted) of those natural num...

約2年 前

解決済み


Make an identity matrix whose diagonal elements are 1:n
For a given input n, make an n by n identity matrix that contains the elements 1:n along its diagonal. For example, if input=5: ...

約2年 前

解決済み


Increment up an input vector
Increment up an input vector by adding the indices to the vector values. For example, if an input vector is [3, 2, 6, 1, 6], the...

約2年 前

解決済み


Calculating the total earnings of a factory
The row vector, prods contains the number of various products manufactured per hour. The second row vector, prices holds values ...

約2年 前

解決済み


Remove all the columns contains only zero
Remove the column from the matrix which has only zeros . Refer the Example below a= 1 0 3 0 23 0 56 0 1 ...

約2年 前

解決済み


what's my tax amount this year ?
given an annual salary x and a tax rate i calculate the amount that you have to pay.Example x = 70000; i=.10 y_correc...

約2年 前

解決済み


short or buy ? take the opportunity
you had already calculated a theoretical stock value, now you checked in bloomberg the quoted price of that stock and you have t...

約2年 前

解決済み


Slope of the line passing through two points
Determine the slope of a line passing through the points a=[x1 y1] and b=[x2 y2].

約2年 前

解決済み


I told you not separate me, but you did :( - ACDC
Given input vector, output it's DC and AC value Example: input = 0 1 -1 0 ac = 0 1 -1 0 dc = 0

約2年 前

解決済み


Calculate solution of given polynomial
For example, y=function([3 -2 -4]) In here, input vector indicate 3*x^2-2*x-4, y is solution of former equation. y=[1.5...

約2年 前

解決済み


Finding two missing number in 1 to n array
You are given an array of numbers from 1 to n with two missing numbers. Return the two missing numbers. Input: x=[5 2 0 1 ...

約2年 前

解決済み


Calculate cosine without cos(x)
Solve cos(x). The use of the function cos() and sin() is not allowed.

約2年 前

解決済み


currency converter
given a rate of exchange calculate the equivalent units of 100 USD

約2年 前

解決済み


Create a square matrix with given conditions
Create a square matrix, M, which should be populated as follows: M = [ n^2 n * (n-1) n * (n-2) ... n * 2 n * ...

約2年 前

解決済み


Delete x value in given vector y.
Delete x value in given vector y. Exapmle x=5; y=[ 1 2 5 6 74 5 2 5] result=[1 2 6 74 2]

約2年 前

解決済み


Set x value to each odd index of vector y.
Set x value to each odd index of vector y.

約2年 前

解決済み


Modulation index
The amplitude of the carrier signal is 2V and the amplitude of the modulating signal is 8V. Find its modulation index.

約2年 前

解決済み


Solve expression II
Solve given expression. alpha=0.1(-x-y-50)/(exp((-x-y-50)/10)-1) beta=5exp((-x+y-60)/20) result=alpha+beta;

約2年 前

解決済み


Solve expression I
Solve expression (1+sin(x))/cos(x)+cos(x)/(1+sin(x)) for given vector x.

約2年 前

解決済み


For a rectangle, if x is the length and 2x is width. Then find out x from the area of the rectangle?
For a rectangle, if x is the length and 2x is the width. Then find out x from the area of the rectangle? if the area is equal...

約2年 前

解決済み


Compare two strings.
Compare two strings, whether they are equal or not.

約2年 前

解決済み


Display positive elements of matrix.
Display positive elements of matrix.

約2年 前

解決済み


Sum positive elements of matrix.
Calculate sum of positive elements of the matrix.

約2年 前

解決済み


Find sum of negative elements in row.
Find sum of negative elements in row. Example x=[1 -5 3 4 -6 6 7 8 9 10] result = -11

約2年 前

解決済み


Implement zero-based indexing for Matrices
Given an input vector and position (which is zero based) output the value Example: x = [1 2; 4 5] pos = [0 1] value = 5 ...

約2年 前

解決済み


How to Concatenate two strings?
How to Concatenate two strings?

約2年 前

解決済み


Create tangent function out of sine function only
Please don't use cosine and tangent functions

約2年 前

さらに読み込む