Community Profile

photo

kausalya lakshmanan


Last seen: Today Actif depuis 2018

Followers: 0   Following: 0

Contact

Professional Interests: image processing

Statistiques

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

Afficher les badges

Feeds

Afficher par

A répondu
Edge Preservation Index matlab code
https://in.mathworks.com/matlabcentral/fileexchange/65261-edge-preservation-index-new-file

plus de 5 ans il y a | 0

| A accepté

A répondu
Save the Values of Variable in a Function to Workspace.
use function [u dx] instead of function dx the value will save in workspace

presque 6 ans il y a | 0

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


square number
Square a number

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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]

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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.

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

Question


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

environ 6 ans il y a | 1 réponse | 0

1

réponse