photo

Abdullah Caliskan


Last seen: 約1ヶ月 前 2014 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB Answers

0 質問
3 回答

File Exchange

1 ファイル

Cody

23 問題
1366 解答

ランク
76,518
of 300,750

評判
0

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

回答採用率
0.00%

獲得投票数
0

ランク
13,135 of 21,073

評判
25

平均評価
5.00

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

ダウンロード
1

ALL TIME ダウンロード
153

ランク
82
of 170,837

コントリビューション
23 問題
1366 解答

スコア
12,671

バッジ数
24

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

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

平均評価

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

平均いいねの数

  • MATLAB Mini Hack 2022 Participant
  • First Answer
  • Cody Challenge Master
  • Famous
  • 5-Star Galaxy Level 1
  • First Submission
  • Community Group Solver
  • Project Euler I
  • Quiz Master
  • Puzzler
  • Scholar
  • ASEE Challenge Master

バッジを表示

Feeds

表示方法

解決済み


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

5年以上 前

解決済み


create a circulant matrix
create a circulant matrix

6年以上 前

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

約7年 前

解決済み


Calculate the CIRCUMFERENCE of circle.
Given the radius is 2, the circumference will be 12.5663.

8年弱 前

解決済み


Simple Vector Addition
Take two incoming vectors and output the sum of the two vectors

8年以上 前

解決済み


Vector Element Multiplication
Take two incoming vectors, and output the element wise multiplication of the vectors.

8年以上 前

解決済み


Matrix Generation from Vector Multiplication
Output the matrix generated from multiplying two vectors together

8年以上 前

解決済み


Find the mean of two vectors
Take two vectors, and output the mean of them (bonus if you don't use the in-built mean function)

8年以上 前

解決済み


Check if inputted variable is a string or a number
Check if a inputted variable is a number or a string, given a string input (i.e. '1' is 1 and thus a number, 'a' is a string).

8年以上 前

解決済み


Find the sum of the largest two elements in a vector
With this one, you have to find the two largest elements in a vector and output the sum of those numbers.

8年以上 前

回答済み
how to scale the array type double of range [-1,1] to [0,1] and [0,360] to[0,1]
if input is matrix, you can use this. upper, bottom xmax =max(input); xmin =min(input); A=bsxfun(@minus,input,xmin); B=bsxfu...

8年以上 前 | 0

解決済み


Check availability of a number in an array
An array is given A=[1 2 3 4 5 7 8 9 10]. Find whether the number n is present in given array or not. If the number n is prese...

8年以上 前

解決済み


Sum of self power series
The series, 1^1,2^2,3^3,4^4,.... Find the sum of such series when x terms are given.

8年以上 前

解決済み


Calculate the number of elements in a matrix.
Calculate the number of elements in a matrix.

8年以上 前

解決済み


Volume Pillar
Calculate the volume of a pillar with radius l and heigth ar.

9年弱 前

解決済み


Average Grade
Given a 1x5 vector presents the grades of a student on five tests. Calculate the average grade of that student.

9年弱 前

解決済み


Reverse a string
Reverse the given string. Example input = 'reverse' output = 'esrever'

9年弱 前

解決済み


Conversion from hours to mili sec
Convert given input in hours to mili seconds

9年弱 前

解決済み


UICBioE240 problem 1.5
Find the size of the matrix, then multiply both values by 10 and make it into a column vector. So if A = [ 1 2 3; ...

9年弱 前

解決済み


UICBioE240 2.2
Make a 3x4 matrix that contains all ones.

9年弱 前

解決済み


UICBioE240 2.3
Make a 4D matrix of 4x4x3x4 containing all zeros.

9年弱 前

解決済み


UICBioE240 problem 1.6
Find the tangent line of a right triangle given the two of the sides. So if A = [1 1] B = sqrt(2)

9年弱 前

解決済み


UICBioE240 2.8
Convert x number of hours into seconds.

9年弱 前

解決済み


vectors counting by 5
Create a vector with numbers from x_min to x_max in increments of 5.

9年弱 前

解決済み


Combine the first and last names
MATLAB R2016 provides a rich set of functions to work with string arrays. In this problem, you will be given two string arrays o...

9年弱 前

解決済み


matrix to vector
For given a matrix of any size, convert it into a column vector.

9年弱 前

解決済み


mean
Calculate the mean of a given vector (with positive elements) and return them in a vector.

9年弱 前

解決済み


row removal
Remove the nth row from input matrix M and return the resulting matrix in output N.

9年弱 前

解決済み


determine the sum of the squares
if x = 4, the solution will be: y = 1^2+2^2+3^2+4^2=1+4+9+16 = 30.

9年弱 前

解決済み


Determine if number is even
Your function should return true if input x is even, else return false

9年弱 前

さらに読み込む