Risolto


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

quasi 6 anni fa

Risolto


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.

quasi 6 anni fa

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

quasi 6 anni fa | 0

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

quasi 6 anni fa | 0

| accettato

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

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

quasi 6 anni fa | 0

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

quasi 6 anni fa | 1

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

quasi 6 anni fa | 0

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

quasi 6 anni fa | 0

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

quasi 6 anni fa | 0

Risposto
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'); ...

quasi 6 anni fa | 2

| accettato

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

quasi 6 anni fa | 0

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

quasi 6 anni fa | 0

Risolto


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

quasi 6 anni fa

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

quasi 6 anni fa | 1

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

quasi 6 anni fa | 0

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

quasi 6 anni fa | 0

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

quasi 6 anni fa | 0

Carica altro