Community Profile

photo

Wasikar


Active since 2017

Statistics

全部
  • Knowledgeable Level 1
  • First Answer
  • Revival Level 1
  • 求解器

查看徽章

Content Feed

查看

解决了


Fibonacci sequence
计算第n个斐波那契号。给定n,返回f,其中f = fib(n)和f(1)= 1,f(2)= 1,f(3)= 2,...示例:inpu ...

4 years ago

解决了


Alphabetize by last name
Given a list of names in a cell array, sort the list by the last name. So if list = {'Barney Google','Snuffy Smith','Dagwood ...

4 years ago

Answered
Matlab Associate Exam info
如果您是在印度参加这项考试的情况,则数学是将认证活动外包给Kryterion测试中心。你...

4 years ago | 1

|公认

解决了


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

5 years ago

解决了


Find the dimensions of a matrix
只需找到给定矩阵的列数即可。示例x = [1 2 3 4 5 6] y = 2

5 years ago

解决了


Sort a list of complex numbers based on far they are from the origin.
给定复数z的列表,返回一个Zsort的列表,使得与原点最远的数字(0+0i)出现f ...

5 years ago

解决了


如何在不使用查找功能的情况下找到元件在向量中的位置
写一个函数posx = findposition(x,y)其中x是向量,而y是您要搜索的数字。示例:鳍...

5 years ago

解决了


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 years ago

解决了


Getting logical indexes
这是一个基本的MATLAB操作。它是出于教学目的。--- Logical indexing works like this. thresh = 4...

5 years ago

解决了


Sorted highest to lowest?
返回1如果输入从最高到最低排序,则返回1,如果不是,则返回。示例:1:7-> 0 [7 5 2] - > 1

5 years ago

解决了


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 years ago

解决了


Matrix indexing with two vectors of indices
Given a matrix M and two index vectors a and b, return a row vector x where x(i) = M(a(i),b(i)).

5 years ago

解决了


找到输入向量的所有数字的总和
找到输入向量X的所有数字的总和。示例:输入x = [1 2 3 5]输出y是11输入x ...

5 years ago

解决了


Determine the number of odd integers in a vector
确定向量中唯一的奇数整数的数量。示例:输入X = [2 5 8 3 7 1];输出y = 4;INP ...

5 years ago

解决了


按降序安排向量
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

5 years ago

解决了


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

5 years ago

解决了


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 years ago

解决了


Simple equation: Annual salary
给定小时工资,通过将工资时间40和时间50乘以每年的工资,因为工资=工资x 40小时/w ...

5 years ago

解决了


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

5 years ago

解决了


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

5 years ago

解决了


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

5 years ago

解决了


Return unique values without sorting
If the input vector A is [42 1 1], the output value B must be the unique values [42 1] The *values of B are in the s...

5 years ago

解决了


查找所有小于0或大于10的元素,然后用NAN代替它们
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

5 years ago

解决了


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...

5 years ago

解决了


Set the array elements whose value is 13 to 0
输入A数组或向量(可以为空)输出B的大小与A相同。所有等于13 ...的元素

5 years ago

解决了


MATLAB印度球员
answer is one of the indian matlab player(just for fun dont take serious)

5 years ago

解决了


Variable_Addition
能够将任何变量添加到第一

5 years ago

解决了


创建一个零矩阵
给定一个输入X,创建一个带有X行和X列的零的正方形矩阵。

5 years ago

解决了


Is my wife right?
Regardless of input, output the string 'yes'.

5 years ago

Load more