photo

kausalya lakshmanan


Last seen: Today 2018 年からアクティブ

Followers: 0   Following: 0

Professional Interests: image processing

統計

All
  • Explorer
  • First Review
  • Knowledgeable Level 1
  • Revival Level 1
  • First Answer
  • Thankful Level 1
  • Solver

バッジを表示

Feeds

表示方法

回答済み
Edge Preservation Index matlab code
https://in.mathworks.com/matlabcentral/fileexchange/65261-edge-preservation-index-new-file

6年弱 前 | 0

| 採用済み

回答済み
Save the Values of Variable in a Function to Workspace.
use function [u dx] instead of function dx the value will save in workspace

6年以上 前 | 0

解決済み


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

6年以上 前

解決済み


Sum of series I
What is the sum of the following sequence: Σ(2k-1) for k=1...n for different n?

6年以上 前

解決済み


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

6年以上 前

解決済み


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

6年以上 前

解決済み


square number
Square a number

6年以上 前

解決済み


Sorted highest to lowest?
Return 1 if the input is sorted from highest to lowest, 0 if not. Example: 1:7 -> 0 [7 5 2] -> 1

6年以上 前

解決済み


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

6年以上 前

解決済み


Find all elements less than 0 or greater than 10 and replace them with 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 ...

6年以上 前

解決済み


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

6年以上 前

解決済み


Sum all integers from 1 to 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.

6年以上 前

解決済み


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

6年以上 前

解決済み


Add two numbers
Calculate the sum of two numbers. Example input = [2 3] output = 5

6年以上 前

解決済み


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

6年以上 前

解決済み


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

6年以上 前

解決済み


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

6年以上 前

解決済み


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

6年以上 前

解決済み


Add two numbers
Given a and b, return the sum a+b in c.

6年以上 前

解決済み


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

6年以上 前

解決済み


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

6年以上 前

解決済み


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

6年以上 前

解決済み


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

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

6年以上 前

質問


how to mention fractional values as a power of s in matlab.
Hi, I have done designing of fractional order controllers using matlab. I have kp,ki and mu values. i Want to mention S^mu in t...

6年以上 前 | 1 件の回答 | 0

1

回答