![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/16272962_1568783817066_DEF.jpg)
Vistasp Edulji
Followers: 0 Following: 0
Statistik
RANG
22.238
of 297.016
REPUTATION
2
ANTWORTZUSTIMMUNG
0.0%
ERHALTENE STIMMEN
1
RANG
8.051 of 20.419
REPUTATION
109
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
2 Dateien
DOWNLOADS
16
ALL TIME DOWNLOADS
1061
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Gelöst
Find the Best Hotels
Given three input variables: * |hotels| - a list of hotel names * |ratings| - their ratings in a city * |cutoff| - the rat...
mehr als 2 Jahre vor
Gelöst
Crop an Image
A grayscale image is represented as a matrix in MATLAB. Each matrix element represents a pixel in the image. An element value re...
mehr als 2 Jahre vor
Gelöst
Calculate BMI
Given a matrix |hw| (height and weight) with two columns, calculate BMI using these formulas: * 1 kilogram = 2.2 pounds * 1 ...
mehr als 2 Jahre vor
Gelöst
Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...
mehr als 2 Jahre vor
Gelöst
Check that number is whole number
Check that number is whole number Say x=15, then answer is 1. x=15.2 , then answer is 0. http://en.wikipedia.org/wiki/Whole_numb...
mehr als 2 Jahre vor
Gelöst
MATLAB Basic: rounding III
Do rounding towards minus infinity. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 8
mehr als 2 Jahre vor
Gelöst
MATLAB Basic: rounding IV
Do rounding towards plus infinity. Example: -8.8, answer -8 +8.1 answer 9 +8.50 answer 9
mehr als 2 Jahre vor
Gelöst
MATLAB Basic: rounding II
Do rounding nearest integer. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 9
mehr als 2 Jahre vor
Gelöst
MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8
mehr als 2 Jahre vor
Gelöst
Rounding off numbers to n decimals
Inspired by a mistake in one of the problems I created, I created this problem where you have to round off a floating point numb...
mehr als 2 Jahre vor
Gesendet
RC Takeoff Analyzer
Take off Distance Analyzer for fixed wing RC Aircraft
mehr als 3 Jahre vor | 6 Downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/f07fb5e2-cc61-4e9f-b3de-216bb16c2275/a0c3825f-58e3-4054-9e16-a978cd959125/images/primaryScreenShot.png)
Frage
How do I contact file exchange Admin?
I'm currently trying to upload a file to file exchange, but I am getting the following error message, The file I'm trying to ...
mehr als 3 Jahre vor | 0 Antworten | 0
0
AntwortenGelöst
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.
mehr als 4 Jahre vor
Gelöst
Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<https://i.imgur.com/jlZDHhq.png>> ...
mehr als 4 Jahre vor
Gelöst
The Tower of Hanoi
In the <http://en.wikipedia.org/wiki/Tower_of_Hanoi Tower of Hanoi problem> with 3 rods (1, 2 & 3), the goal is to move a tower ...
mehr als 4 Jahre vor
Gelöst
Summing Digits within Text
Given a string with text and digits, add all the numbers together. Examples: Input str = '4 and 20 blackbirds baked in a...
mehr als 4 Jahre vor
Gelöst
Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...
mehr als 4 Jahre vor
Gesendet
V-N Plotter
Plots V-N diagrams for fixed wing aircraft
mehr als 4 Jahre vor | 10 Downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/cd0109dc-f0b3-4513-9b8a-8845478a951a/b3daadec-2639-4cfe-b36b-4a18f1b27bc6/images/primaryScreenShot.png)
Gelöst
Pi Estimate 1
Estimate Pi as described in the following link: <http://www.people.virginia.edu/~teh1m/cody/Pi_estimation1.pdf>
mehr als 4 Jahre vor
Gelöst
Matlab Basics II - Create a vector with a repeated entry
Create a row vector of length n, filled with 4's, for example, if n = 3 output = [4 4 4] make sure to round UP when n is a...
mehr als 4 Jahre vor
Gelöst
Matlab Basics II - Free Fall
An object freely falling from rest under gravity covers a distance x given by: x = 1/2 gt^2 write a function that calculat...
mehr als 4 Jahre vor
Gelöst
Matlab Basics II - Minimum
Write a function that returns the minimum of each ROW of a matrix x example: x = [1 2 3; 4 5 6]; output [1;4];
mehr als 4 Jahre vor
Gelöst
Matlab Basics II - Extract last 3 elements of a vector
Let x be a vector of unknown length, we are always interested in the last 3 numbers in the vector, write a function that gives t...
mehr als 4 Jahre vor
Gelöst
Matlab Basics II - Count rows in a matrix
Write a function that returns that number of rows in a vector or matrix x example: x = [1; 2; 3] output = 3
mehr als 4 Jahre vor
Gelöst
radius of a spherical planet
You just measured its surface area, that is the input.
mehr als 4 Jahre vor
Gelöst
Compute a dot product of two vectors x and y
x and y are input vectors, d is a number and contains their dot product
mehr als 4 Jahre vor
Gelöst
Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<https://i.imgur.com/jlZDHhq.png>> Image courtesy of <http://up...
mehr als 4 Jahre vor
Gelöst
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...
mehr als 4 Jahre vor
Gelöst
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...
mehr als 4 Jahre vor