photo

Omar Abedalrahman


Aktiv seit 2016

Followers: 0   Following: 0

Statistik

All
MATLAB Answers

4 Fragen
0 Antworten

Cody

0 Probleme
16 Lösungen

RANG
232.757
of 300.744

REPUTATION
0

BEITRÄGE
4 Fragen
0 Antworten

ANTWORTZUSTIMMUNG
100.0%

ERHALTENE STIMMEN
0

RANG
 of 21.054

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
29.523
of 170.597

BEITRÄGE
0 Probleme
16 Lösungen

PUNKTESTAND
170

ANZAHL DER ABZEICHEN
2

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Thankful Level 1
  • Commenter
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Can anyone help me with this question using MATLAB? I'm not sure which function to use.
Wright et al. (A-2) used the 1999-2000 National Health and Nutrition Examination Survey (NHANES) to estimate dietary intake of 1...

etwa 9 Jahre vor | 2 Antworten | 0

2

Antworten

Gelöst


Is my wife right?
Regardless of input, output the string 'yes'.

etwa 9 Jahre vor

Gelöst


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

etwa 9 Jahre vor

Gelöst


If you have matrix A, create matrix B using matrix A as an "element"
A = [1 2 3 4; 5 6 7 8] B = [1 2 3 4 1 2 3 4; 5 6 ...

etwa 9 Jahre vor

Gelöst


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

etwa 9 Jahre vor

Gelöst


Add two numbers
Given a and b, return the sum a+b in c.

etwa 9 Jahre vor

Gelöst


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

etwa 9 Jahre vor

Gelöst


ASCII Code
Using matlab, give the symbol that is associated with ASCii code 90.

etwa 9 Jahre vor

Gelöst


Unit conversion
Convert x degree Celsius to y degree Fahrenheit.

etwa 9 Jahre vor

Gelöst


Write a code that will follow the equation y = x * (x + x) * x.
If x = 5, y = 5 * (5+5) * 5 = 250

etwa 9 Jahre vor

Gelöst


Corresponding letter to ASCII code.
Given the letter, the output will show the corresponding ASCII code.

etwa 9 Jahre vor

Gelöst


ASCII code of a leter.
Given the letter, the output will show the corresponding ASCII code.

etwa 9 Jahre vor

Gelöst


Annual Salary
What is the annual salary of Mr. Cody if he works 40 hours a week and gets $x per hour and a yearly bonus of $2000? (Let, 50 wee...

etwa 9 Jahre vor

Gelöst


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

etwa 9 Jahre vor

Gelöst


Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416

etwa 9 Jahre vor

Frage


I'm supposed make a vector called Vec that contains a 1x9 ranging from integers 1 through 9 in random order. There always tends to be a zero in the vector when the code is ran. How can I find the zeros and replace them with an integer from 1-9.
%I have this so far Vec = rand(1,9)*9; %I keep getting zeros in the vector when the code is ran. How can find the zero a...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Can someone show me how to replace the 4th elements of vector a2 with c1, and name the new vector a4?
a2 = [1.1 2.2 3 4.4 5.5]; c1 = 5-7i

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How do I include a variable when trying to display a string?
I created a start time and saved it. I want to include this variable in the end of the string, but what I'm doing is not workin...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Gelöst


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

mehr als 9 Jahre vor