Solved


Find 100 from a Matrix and Replace With 0 with less computation time
pls use this matrix x = [208 40 167 180 112 70 192 215 90 19 231 100 9 100 97 100 ...

10 years ago

Solved


Find out sum of prime number till given number
Find out sum of prime number till given number Example, if number is 10, then answer must be 17.

10 years ago

Answered
How do I draw a decision boundary?
For k=1, this amounts to the <http://www.mathworks.com/help/matlab/ref/voronoi.html Voronoi diagram>. x = [0 2 4 2 5 6]; ...

10 years ago | 0

Answered
Correlation of input variables in ANN
It depends on what you mean by performance. My intuition tells me that correlated input variables should not decrease network ac...

10 years ago | 1

Question


What is the fastest way to get the number of pages in a multi-page TIFF file?
I have a stack of images saved as a multi-page TIFF file. I want to extract the number of images (pages) without reading all of ...

10 years ago | 1 answer | 3

1

answer

Solved


Box!
Given a box, find the volume of the cube. With each side = a.

10 years ago

Answered
How to convert date variable with varying length?
If your data is stored in a cell array, such as d = {'21216','112515','91101','122515','70487'}; %random dates in mmddyy fo...

10 years ago | 0

Answered
How do you add every row of a matrix to every other row to get separate new matix for each addition ?
I know this only partially answers your question, but it may help you get started. To add a row to every row of a matrix, use...

10 years ago | 0

| accepted

Question


Is there a simple way to set a property of multiple (potentially different) objects in a cell array?
Suppose I have a cell array of objects (which may belong to different classes), C{1} = [1x1 toolpack.component.TSLabel] ...

10 years ago | 1 answer | 0

1

answer

Solved


vector to string
Determine what the ASCII characters spell out. Example: input = [ 72 73 71 72] output = 'HIGH'

10 years ago

Solved


Delete 2nd and 5th column of Given 6*6 matrix
Delete the 2nd and 5th columns of the given 6*6 matrix. Example Suppose A = magic(6) 35 1 6 26 19 ...

10 years ago

Solved


Narcissistic problem
How many likes has this problem?

10 years ago

Solved


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

10 years ago

Question


How to programmatically get custom MATLAB toolbox version?
I have created my own toolbox and packaged it into a .mltbx file. Inside the toolbox, I want to include a function that returns ...

10 years ago | 1 answer | 2

1

answer

Solved


Power The Product
EXAMPLE: INPUT x=10 & y=10 OUTPUT z=1000000 or, INPUT x=2 & y=3 OUTPUT z= 216 you just need to calculate the product first...

10 years ago

Solved


interesting center of magic matrix
output the centre of magic matrix of n input=7; output=25

10 years ago

Solved


Variable_Addition
be able to add any variable to the number one

10 years ago

Solved


Average speed for the entire trip
The input is two speeds (for the trip and return trip) and output is average speed. Assume units are consistent, say miles per h...

10 years ago

Solved


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 years ago

Solved


Matrix of almost all zeros, except for main diagonal
Write a program to input an integer n and build a n-by-n matrix with the numbers 1,2,...,n on the main diagonal and zeros elsewh...

10 years ago

Answered
draw a white circle on an binary image?
You can also try using <http://www.mathworks.com/help/vision/ref/insertshape.html insertShape>, which was introduced in R2014a.

10 years ago | 0

Answered
how to draw circle in an image?
In case someone else stumbles upon this question like I did and is unsatisfied with the current answers, I have found that <http...

10 years ago | 7

Solved


Add two to x
Create a script such that y equals x plus 2

10 years ago

Solved


the number of inputs
Find the number of the inputs of the function. example y = theinputnumber(x,k); function called theinputnumber has 2 in...

10 years ago

Solved


add two values
add two values

10 years ago

Solved


Kwabna
add two numbers

10 years ago

Submitted


neighbor2ind
Get pairs of indices for neighboring elements in an array.

10 years ago | 1 download |

0.0 / 5

Answered
How to get each iteration to be outputted in a while loop?
A few things: 1. I think your variable Estimate is defined incorrectly. Check to make sure it matches the equation in your pd...

10 years ago | 0

Question


Are image morphological operations invalid for RGB images?
Most (if not all) of the morphological operations (e.g. imdilate, imerode, imtophat, imbothat) specify that the input image shou...

10 years ago | 1 answer | 0

1

answer

Solved


Generate the sum of Squares of the given number
|P(n) = 1^2 + 2^2 + ... + n^2| |P(1) = 1| |P(2) = 1 + 4 = 5;| |P(3) = 5 + 9 = 14;| |P(4) = 14 + 16 = 30;|

10 years ago

Load more