Resuelto


Similar Triangles - find the height of the tree
Given the height, h1, of a power pole, shorter than a tree, a given distance, x2 away, please find h2, height of the tree. Pleas...

alrededor de 4 años hace

Resuelto


Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
If p is the perimeter of a right angle triangle with integral length sides, { a, b, c }, there are exactly three solutions for p...

alrededor de 4 años hace

Resuelto


Great Circle Distance
Find shortest between two points on a ball given their azimuthal and polar angles (in degrees) as well as the radius of the sphe...

alrededor de 4 años hace

Respondida
Vectorize "for"-loop in multidimentional array
It is conceivable that the loop might be eliminated with some sub2ind calculations followed by linear indexing, but I would expe...

alrededor de 4 años hace | 0

Resuelto


Clockwise or Counterclockwise
Given a list of 2-d points defining the vertices of a polygon, determine whether these points are sorted clockwise. The input...

alrededor de 4 años hace

Resuelto


What is the distance from point P(x,y) to the line Ax + By + C = 0?
Given a point, P(x,y), find the distance from this point to a linear line. INPUTS: x, y, A, B, C OUTPUTS: d, the distance ...

alrededor de 4 años hace

Resuelto


Covering area
As an extension of the problem <http://www.mathworks.com/matlabcentral/cody/problems/416-polygon-area>, find the area, bounded b...

alrededor de 4 años hace

Resuelto


Circumscribed circles
Given the lengths of the 3 sides of a triangle, output the radius of the circumscribed circle. Example: [3 4 5] -> 2.5

alrededor de 4 años hace

Resuelto


Smallest distance between a point and a rectangle
Given two points *x* and *y* placed at opposite corners of a rectangle, find the minimal euclidean distance between another poin...

alrededor de 4 años hace

Resuelto


Volume of a Parallelepiped
Calculate the volume of a Parallelepiped given the vectors for three edges that meet at one vertex. A cube is a special case ...

alrededor de 4 años hace

Respondida
Sort a table in ascending order
The answer would be relatively straightforward, as well as much more efficient, if you would orient your table the other way. Wi...

alrededor de 4 años hace | 1

| aceptada

Resuelto


Find third Side of a right triangle given hypotenuse and a side. No * - or other functions allowed
Find the remaining side of a triangle given the hypotenuse and a side. However, the normal functions and symbols are not allowe...

alrededor de 4 años hace

Respondida
How to transform a RGB matrix to a weighted adjacency matrix?
Borys, I tackled your problem and wrote a blog post about it: "Transforming a color image to a weighted adjacency matrix"

alrededor de 4 años hace | 1

| aceptada

Resuelto


Right and wrong
Given a vector of lengths [a b c], determines whether a triangle with those sides lengths is a right triangle: <http://en.wikipe...

alrededor de 4 años hace

Resuelto


Television Screen Dimensions
Given a width to height ratio of a TV screen given as _w_ and _h_ as well as the diagonal length of the television _l_, return t...

alrededor de 4 años hace

Respondida
Two colormaps in the same plot
The ColorBar object has an undocumented Colormap property. You can set this property directly to control the colors displayed by...

alrededor de 4 años hace | 0

| aceptada

Resuelto


Are you in or are you out?
Given vertices specified by the vectors xv and yv, and a single point specified by the numbers X and Y, return "true" if the poi...

alrededor de 4 años hace

Resuelto


Angle between Two Vectors
The dot product relationship, a dot b = | a | | b | cos(theta), can be used to determine the acute angle between vector a and ve...

alrededor de 4 años hace

Respondida
Two colormaps in the same plot
You can't display images with two different colormaps within the same axes. As a workaround, you could convert both images from ...

alrededor de 4 años hace | 0

Resuelto


Angle between two vectors
You have two vectors , determine the angle between these two vectors For example: u = [0 0 1]; v = [1 0 0]; The a...

alrededor de 4 años hace

Respondida
How to get rid of deconvolution artifacts?
I think this is because you are performing inverse filtering in the frequency domain, and the blurring function has zeros (or al...

alrededor de 4 años hace | 0

| aceptada

Respondida
Function inside for loop not working
One possible explanation for the observed behavior is that the variable hcube does not actually contain a hypercube object when ...

alrededor de 4 años hace | 0

| aceptada

Resuelto


Clock Hand Angle 1
Given a time in HH:MM:SS, find the smallest angle (in degrees) between the hour and minute hand

alrededor de 4 años hace

Respondida
Extract transformation matrix from image distortion
In your call to fitgeotrans, you have specified that you want a 'polynomial' transformation. This type of transformation is not ...

alrededor de 4 años hace | 1

| aceptada

Resuelto


Is the Point in a Circle?
Check whether a point or multiple points is/are in a circle centered at point (x0, y0) with radius r. Points = [x, y]; c...

alrededor de 4 años hace

Respondida
Trying add chunk of data to a array
As I understand the code, the fact that ls is empty after the loop implies that either: The while loop body never executes The...

alrededor de 4 años hace | 1

Respondida
Averaging each .STD files
Try this: files = dir("*.Std"); N = numel(files); Date = NaT(0,1); X = zeros(0,3); for k = 1:numel(files) name = str...

alrededor de 4 años hace | 0

Respondida
Averaging each .STD files
[Update: Based on comments from Moses, I submitted another answer to this question. See below.] Try this: files = dir("*.Std")...

alrededor de 4 años hace | 0

| aceptada

Problema


Function Call Counter

alrededor de 4 años hace | 2 | 6 solvers

Respondida
Get edge points from a hough line
I think I understand your question. Here is one possibility. Using the function intline from the DIPUM Toolbox, create a binary...

alrededor de 4 años hace | 0

| aceptada

Cargar más