photo

Duane Hanselman


University of Maine

Last seen: 約3年 前 2012 年からアクティブ

Followers: 0   Following: 0

Electrical Engineering professor. Coauthor of the "Mastering MATLAB" book series.

統計

All
MATLAB Answers

1 質問
0 回答

File Exchange

3 ファイル

Cody

0 問題
284 解答

ランク
153,168
of 301,751

評判
0

コントリビューション
1 質問
0 回答

回答採用率
0.0%

獲得投票数
0

ランク
8,271 of 21,409

評判
107

平均評価
0.00

コントリビューション
3 ファイル

ダウンロード
3

ALL TIME ダウンロード
1070

ランク
885
of 176,380

コントリビューション
0 問題
284 解答

スコア
2,560

バッジ数
3

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Personal Best Downloads Level 1
  • First Review
  • First Submission
  • Leader
  • Commenter
  • Solver

バッジを表示

Feeds

表示方法

送信済み


PIDSEARCH
Search for optimum PD, PI, and PID parameters using fminsearch.

8年弱 前 | ダウンロード 1 件 |

0.0 / 5

解決済み


Sum the squares of numbers from 1 to n
For a given value of n return the sum of square of numbers from 1 to n. Example For n = 2 then sum of squares = 5 (1^2 + ...

10年以上 前

解決済み


Polynomial Evaluation
Create a routine that takes a list of coefficients of a polynomial in order of increasing powers of x; together with a value of ...

10年以上 前

解決済み


multiple of nine?
Given a positive number n, return true if n is a multiple of 9 and false if not. Do not make the division and do not use functio...

10年以上 前

解決済み


prime to each other
Given two integers n1, n2 greater than 1, find out if they have common divisors or are prime to each other. Return "true" if the...

10年以上 前

解決済み


Sum of Matrix
Sum of Matrix

10年以上 前

解決済み


Get all corner elements from a matrix where dimension of matrix is always equal to or greater than 2.
if a given matrix a = [1 2 3;4 5 6]; so answer is going to be [1 3;4 6]

10年以上 前

解決済み


How to make y half of x
Making y equal to x/2.

11年以上 前

解決済み


Find the product of a Vector
How would you find the product of the vector [1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0 5.5 6.0] times 2?; x = [1 : 0.5 : 6]; y ...

11年以上 前

解決済み


y equals x divided by 2
function y = x/2

11年以上 前

解決済み


Skip by a multiple
Given an integer create an array of its multiples. Array must have a length of 15

11年以上 前

解決済み


Array of Ones
Create a 100 X 100 array of ones.

11年以上 前

解決済み


Is It a Palindrome?
Given a string or array, determine if it is a palindrome.

11年以上 前

解決済み


sum of the first 10 odd numbers
y = sum(first_10_odd_numbers)

11年以上 前

解決済み


Cumulative product of a vector
Cumulative product of a vector example x=[1 2 5 10], then answer must be [ 1 2 10 100] *If you like this prob...

11年以上 前

解決済み


Print the largest eigenvalue of A(500)
Write a function that prints the largest eigenvalue of A(500), without any extraneous output. For a positive integer n, let A...

11年以上 前

解決済み


Find the rank of a matrix
Determine the rank of a matrix without using the MATLAB function of the same name.

11年以上 前

解決済み


Array resizing: Removing elements
* Remove elements 2, 4, and 6 from row array pendingTasks

11年以上 前

解決済み


Constructing column arrays
* Construct a column array elevatorStops with values 2, 4, 5, 9, and 10

11年以上 前

解決済み


Union of two set decreasing order
Union of two set decreasing order Say, x=[1 2 5] and y=[5 7 8] then answer must be [8 7 5 2 1]

11年以上 前

解決済み


Beginner's Problem - Squaring
Try out this test problem first. Given the variable x as your input, square it by two and put the result in y. Examples: ...

11年以上 前

解決済み


Determinant without using det()
Given a square matrix A, compute the <http://en.wikipedia.org/wiki/Determinant determinant> of A. Note that you may not use t...

11年以上 前

解決済み


Remove the Zero
Given an array n, remove all zeros

11年以上 前

解決済み


Remove and Sort
Given a randomized array n, sort it and remove all odd integers. n=5 y = [2 4]

11年以上 前

解決済み


Remove the positive integers.
Given array,x, remove all the positive numbers and display ouput as y. Example x=[1 -2 3 -4] , output is y=[-2 -4].

11年以上 前

解決済み


Evaluate Polynomial
Given a polynomial equation coefficients in a vector p, you have to return its value at x. Example: For inputs p and x ...

11年以上 前

解決済み


Polynomial Multiplication
Multiply two polynomial equation.Given polynomial coefficients a and b.

11年以上 前

解決済み


Hard limit function
Classify x data as if x>=0 then y=1 if x<0 then y=0 Example x = [ -2 -1 0 1 2] y = [ 0 0 1 1 1]

11年以上 前

解決済み


Find supported functions
Given a function name, return true if that function is supported by the toolboxes that are installed with MATLAB on this machine...

11年以上 前

解決済み


Reverse a matrix
Its simple. You have to reverse a given matrix.

11年以上 前

さらに読み込む