photo

Jasmine


University of Bath

Attivo dal 2014

Followers: 0   Following: 0

Messaggio

Statistica

All
MATLAB Answers

2 Domande
5 Risposte

Cody

0 Problemi
33 Soluzioni

RANK
3.026
of 300.037

REPUTAZIONE
20

CONTRIBUTI
2 Domande
5 Risposte

ACCETTAZIONE DELLE RISPOSTE
50.0%

VOTI RICEVUTI
6

RANK
 of 20.862

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
16.087
of 167.106

CONTRIBUTI
0 Problemi
33 Soluzioni

PUNTEGGIO
330

NUMERO DI BADGE
3

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer
  • Commenter
  • Promoter
  • Solver

Visualizza badge

Feeds

Visto da

Domanda


GUI closing unexpectedly once published as an application?
Hi, I have written a fully working GUI. I then wanted to add more functionality by bringing up a further GUI when a push button ...

circa 11 anni fa | 1 risposta | 0

1

risposta

Risolto


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

circa 11 anni fa

Risolto


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

circa 11 anni fa

Risolto


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

circa 11 anni fa

Risolto


surface of a spherical planet
you just discovered its circumference, that is the input.

circa 11 anni fa

Risolto


Pizza value using expression with parentheses
Pizza prices are typically listed by diameter, rather than the more relevant feature of area. Compute a pizza's value (cost per ...

circa 11 anni fa

Risolto


Fahrenheit to Celsius using multiple statements
Given a Fahrenheit value F, convert to a Celsius value C. While the equation is C = 5/9 * (F - 32), as an exercise use two state...

circa 11 anni fa

Risolto


Is my wife right? Now with even more wrong husband
Again, as in "Is my wife right?" ( <http://www.mathworks.com/matlabcentral/cody/problems/149-is-my-wife-right> ), answer 'yes' r...

circa 11 anni fa

Risolto


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

circa 11 anni fa

Risolto


Bottles of beer
Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...

circa 11 anni fa

Risolto


radius of a spherical planet
you just measured its surface area, that is the input.

circa 11 anni fa

Risolto


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

circa 11 anni fa

Risolto


Simple equation: Annual salary
Given an hourly wage, compute an annual salary by multiplying the wage times 40 and times 50, because salary = wage x 40 hours/w...

circa 11 anni fa

Risolto


The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".

circa 11 anni fa

Risposto
How to communicate with instrument using USB port
Sounds like it is a terminator property problem. Try: set(s,'Terminator',<cr><lf>); and change your code to: s = se...

circa 11 anni fa | 0

Risposto
How to communicate with instrument using USB port
First you'll need to open of the port. See *fopen(serial)* for help with this. You should be able to work out which COM port you...

circa 11 anni fa | 1

Risposto
Default matlab version when several installed on the same pc?
Have you tried going into your normal MATLAB working folder using windows explorer and right clicking on any .m file selecting o...

circa 11 anni fa | 0

| accettato

Risolto


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

circa 11 anni fa

Risolto


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

circa 11 anni fa

Risolto


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

circa 11 anni fa

Risposto
GUI - What is the best language to make a commercial version?
Try typing *applicationcompiler* at MATLAB's command line.

circa 11 anni fa | 2

Risolto


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

circa 11 anni fa

Risolto


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

circa 11 anni fa

Risolto


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

circa 11 anni fa

Risolto


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

circa 11 anni fa

Risolto


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

circa 11 anni fa

Risolto


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

circa 11 anni fa

Risolto


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

circa 11 anni fa

Risolto


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

circa 11 anni fa

Risolto


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

circa 11 anni fa

Carica altro