Solved


Find the sides of an isosceles triangle when given its area and height from its base to apex
Find the sides of an isosceles triangle when given its area and the height from its base to apex. For example, with A=12 and ...

4 years ago

Solved


Find my daddy long leg (No 's')
Given the ratio of the two legs (longer / shorter), and the hypotenuse length, find the value of the bigger leg.

4 years ago

Answered
How do I write files in NITF format?
Take a look at this link.

4 years ago | 0

Answered
Upgrade MATLAB from r2013b to r2017b problem.....
I don't know when element-wise operation was released nor it always has been there. A = [1, 2; 3, 4] B = A^2 C = A.^2 No...

4 years ago | 0

| accepted

Solved


Triangle sequence
A sequence of triangles is constructed in the following way: 1) the first triangle is Pythagoras' 3-4-5 triangle 2) the s...

4 years ago

Solved


Find a Pythagorean triple
Given four different positive numbers, a, b, c and d, provided in increasing order: a < b < c < d, find if any three of them com...

4 years ago

Solved


Area of an Isoceles Triangle
An isosceles triangle has equal sides of length x and a base of length y. Find the area, A, of the triangle. <<http://upload...

4 years ago

Solved


Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...

4 years ago

Solved


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

4 years ago

Solved


Side of a rhombus
If a rhombus has diagonals of length x and x+1, then what is the length of its side, y? <<http://upload.wikimedia.org/wikipe...

4 years ago

Solved


Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<http://upload.wikimedia.org/wikipe...

4 years ago

Solved


Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...

4 years ago

Solved


Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...

4 years ago

Solved


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<http://upload.wikimedia.org/wikipedia/commons/e/e0/Equilateral-tr...

4 years ago

Solved


Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...

4 years ago

Solved


Solve a System of Linear Equations
*Example*: If a system of linear equations in _x&#8321_ and _x&#8322_ is: 2 _x&#8321;_ + _x&#8322;_ = 2 _x&#8321;...

4 years ago

Solved


Calculate BMI
Given a matrix |hw| (height and weight) with two columns, calculate BMI using these formulas: * 1 kilogram = 2.2 pounds * 1 ...

4 years ago

Answered
Access MATLAB out of intitute
Good to follow SindarĀ“s sugestion. But my exp was different: If you have MATLAB installed in your notebook/computer with an aca...

4 years ago | 0

Answered
How to plot a horizontal line?
y = 0:0.1:110; x = 2050.* ones(length(y)); plot(y,x) xlim([1 110])

4 years ago | 1

Answered
loop and array for sum
s = s + sum(magnitude(i:i+1000)); would it work?

4 years ago | 0

Answered
How to input solution for the matrix in for loop.
Not sure where your variable w came from. MATLAB does not reccommend using inline anymore, according to its documentation. It ...

4 years ago | 0

Answered
Cannot open DICOM file
If dicomread didn't show any errors, try this after reading them again: figure imshow(yourDicom, 'DisplayRange', []); I did n...

4 years ago | 0

Answered
how can I obtain hounsfield units(HU) from a .dcm image?
After loading your image: yourImage = dicomread('yourImage.dcm'); You can go straight to info = dicominfo('yourImage.dcm'); ...

4 years ago | 2

| accepted

Answered
Can't use mex function in Macbook with MATLAB R2018b
I think you're supposed to compile your mex files for macOS so you get mexmaci64 files. Check here to see if that's the problem...

4 years ago | 0

Answered
Matlab operation in macOS
Try opening your terminal, then type: cd /Applications/MATLAB_R2019b.app/bin type ./matlab Are you using some academic lic...

4 years ago | 0

Solved


Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...

4 years ago

Answered
How to use negative index ranges in for loop?
It's not possible. if you want to run a for loop like you showed in your example ranging from -5 to + 5 By doing like this, yo...

4 years ago | 1

Answered
Basic understanding on matlab
How did you get A*B = [9 12; 9 12] ? with your values for A and B, A*B = [19 22; 43 50] . Even doing element-wise (A.*B) is = ...

4 years ago | 0

Answered
I got subscript indices must be real positive integers or logicals on my code
What is C? I suppose your original image to be equalized is img. So is C any function applied in img? If that's not the case, ...

4 years ago | 0

Answered
How do i deal with argument error?
You can always debug using dbstop in your line you are having errors. Another way is by getting one value of confortTier and cu...

4 years ago | 0

Load more