Gelöst


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

mehr als 10 Jahre vor

Gelöst


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.

mehr als 10 Jahre vor

Beantwortet
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]; ...

mehr als 10 Jahre vor | 0

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

mehr als 10 Jahre vor | 1

Frage


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

mehr als 10 Jahre vor | 1 Antwort | 3

1

Antwort

Gelöst


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

mehr als 10 Jahre vor

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

mehr als 10 Jahre vor | 0

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

mehr als 10 Jahre vor | 0

| akzeptiert

Frage


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

mehr als 10 Jahre vor | 1 Antwort | 0

1

Antwort

Gelöst


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

mehr als 10 Jahre vor

Gelöst


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

mehr als 10 Jahre vor

Gelöst


Narcissistic problem
How many likes has this problem?

mehr als 10 Jahre vor

Gelöst


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

mehr als 10 Jahre vor

Frage


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

mehr als 10 Jahre vor | 1 Antwort | 2

1

Antwort

Gelöst


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

mehr als 10 Jahre vor

Gelöst


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

mehr als 10 Jahre vor

Gelöst


Variable_Addition
be able to add any variable to the number one

mehr als 10 Jahre vor

Gelöst


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

mehr als 10 Jahre vor

Gelöst


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

mehr als 10 Jahre vor

Gelöst


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

mehr als 10 Jahre vor

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

mehr als 10 Jahre vor | 0

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

mehr als 10 Jahre vor | 7

Gelöst


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

fast 11 Jahre vor

Gelöst


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

fast 11 Jahre vor

Gelöst


add two values
add two values

fast 11 Jahre vor

Gelöst


Kwabna
add two numbers

fast 11 Jahre vor

Gesendet


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

fast 11 Jahre vor | 269 Downloads |

0.0 / 5

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

fast 11 Jahre vor | 0

Frage


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

fast 11 Jahre vor | 1 Antwort | 0

1

Antwort

Gelöst


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

fast 11 Jahre vor

Mehr laden