我是靠谱客的博主 有魅力大白,最近开发中收集的这篇文章主要介绍matlab中的ko,KO - MATLAB Central,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Solved

Set some matrix elements to zero

First get the maximum of each *row*, and afterwards set all the other elements to zero. For example, this matrix:

1 2 3 ...

1 year ago

Solved

Create an index-powered vector

Given a input vector x, return y as index-powered vector as shown below.

Example

x = [2 3 6 9]

then y should be

[...

1 year ago

Solved

Symmetry of vector

Determine whether the vector is symmetric or not (vector could be even or odd in length).

For example:

x = [1 2 3 3 2 1] ...

1 year ago

Solved

Create a vector whose elements depend on the previous element

The idea is to create a vector A whose elements depend on the previous element : *A(i+1) = 2*A(i)+1*

*2 Inputs*:

- A : The...

1 year ago

Solved

Determine the number of odd integers in a vector

Determine the number of unique odd integers in a vector.

Examples:

Input x = [2 5 8 3 7 1];

Output y = 4;

Inp...

1 year ago

Solved

Is it a number?

Determine if input is numeric. If it is,output is 1; if it is not, output is 0.

1 year ago

Solved

frame of the matrix

Given the matrix M, return M without the external frame.

1 year ago

Solved

middleAsColumn: Return all but first and last element as a column vector

Given input A, return all but the first and last elements, arranged as a column vector. (I.e., all dimensions after the first s...

1 year ago

Solved

"mirror" matrix

Create n x 2n "mirror" matrix of this type:

Examples

For n = 2

m = [ 1 2 2 1

1 2 2 1 ]

For n = 3

m = ...

1 year ago

Solved

MATLAB Basic: rounding III

Do rounding towards minus infinity.

Example: -8.8, answer -9

+8.1 answer 8

+8.50 answer 8

1 year ago

Solved

Solve a System of Linear Equations

*Example*:

If a system of linear equations in _x₁_ and _x₂_ is:

2 _x₁_ + _x₂_ = 2

_x₁...

1 year ago

Solved

Rescale Scores

Each column (except last) of matrix |X| contains students' scores in a course assignment or a test. The last column has a weight...

1 year ago

Solved

Convert from Fahrenheit to Celsius

Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...

1 year ago

Solved

Calculate Amount of Cake Frosting

Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...

1 year ago

Solved

Return a list sorted by number of occurrences

Given a vector x, return a vector y of the unique values in x sorted by the number of occurrences in x.

Ties are resolved by a ...

1 year ago

Solved

Read a column of numbers and interpolate missing data

Given an input cell array of strings s, pick out the second column and turn it into a row vector of data. Missing data will be i...

1 year ago

Solved

Interpolator

You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...

1 year ago

Solved

De-dupe

Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if

a =...

1 year ago

Solved

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

1 year ago

Solved

Making change

Given an amount of currency, return a vector of this form:

[100 50 20 10 5 2 1 0.5 0.25 0.1 0.05 0.01]

Example:

Input a = ...

1 year ago

Solved

Is my wife right?

Regardless of input, output the string 'yes'.

1 year ago

Solved

Bottles of beer

Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...

1 year ago

Solved

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

1 year ago

Solved

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

1 year ago

Solved

Increment a number, given its digits

Take as input an array of digits (e.g. x = [1 2 3]) and output an array of digits that is that number "incremented" properly, (i...

1 year ago

Solved

Additive persistence

Inspired by Problem 2008 created by Ziko.

In mathematics, the persistence of a number is the *number of times* one must apply...

1 year ago

Solved

Rounding off numbers to n decimals

Inspired by a mistake in one of the problems I created, I created this problem where you have to round off a floating point numb...

1 year ago

Solved

Reverse Calculator

Use this reverse calculator and give correct output

Its simple, In my Reverse calculator if you press 0 it will be considered...

1 year ago

Solved

Calculate Inner Product

Given two input matrices, |x| and |y|, check if their inner dimensions match.

* If they match, create an output variable |z|...

1 year ago

Solved

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

1 year ago

最后

以上就是有魅力大白为你收集整理的matlab中的ko,KO - MATLAB Central的全部内容,希望文章能够帮你解决matlab中的ko,KO - MATLAB Central所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部