photo

Jon Wieser


Last seen: presque 6 ans il y a Actif depuis 2018

Followers: 0   Following: 0

Statistiques

All
MATLAB Answers

0 Questions
6 Réponses

Cody

0 Problèmes
148 Solutions

RANG
3 207
of 300 759

RÉPUTATION
18

CONTRIBUTIONS
0 Questions
6 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
3

RANG
 of 21 081

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
1 740
of 170 900

CONTRIBUTIONS
0 Problèmes
148 Solutions

SCORE
1 610

NOMBRE DE BADGES
4

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 2
  • First Review
  • Community Group Solver
  • First Answer
  • CUP Challenge Master
  • Promoter
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
Create an RGB Image using a loop by choosing a random color for each pixel
x = 1:10; y= 1:10; image=zeros(10,10,3); m = randi(3,10,10); % creates a vetor that of random numbers from 1:3 that deterim...

environ 6 ans il y a | 0

| A accepté

A résolu


Fibonacci-Sum of Squares
Given the Fibonacci sequence defined by the following recursive relation, * F(n) = F(n-1) + F(n-2) * where F(1) = 1 and F(1)...

plus de 6 ans il y a

Réponse apportée
solving three equations for 3 unknows
try: D=solve('(2*c*w1)+b2 = 0.3205','((2*c*b2)+ w1)*w1 = 214200','(b2*w1)=1.2260e+05;','c','w1','b2')

plus de 6 ans il y a | 0

Réponse apportée
translate equation to matlab code
s2_hat= n1/n2*(N_hat*(-N_hat*s1_hat))-N_hat*sqrt(1-(n1/n2)^2*(N_hat*s1_hat)*(N_hat*s1_hat))

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
Function Return only one value
when you call the function, you need to specify two outputs, for example: [X,Y] =MyEKFFun(31,24,18,330,364,379,1,1.1,1.3,2)

plus de 6 ans il y a | 2

A résolu


Cell Counting: How Many Draws?
You are given a cell array containing information about a number of soccer games. Each cell contains one of the following: * ...

plus de 6 ans il y a

A résolu


The Answer to Life, the Universe, and Everything
A variation of a previous Hitchhiker's Guide to the Galaxy problem. *Inputs:* Life, the Universe, and Everything *Output:*...

plus de 6 ans il y a

A résolu


Counting down
Create a vector that counts from 450 to 200 in increments of 10.

plus de 6 ans il y a

A résolu


Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...

plus de 6 ans il y a

A résolu


Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...

plus de 6 ans il y a

A résolu


Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of <http://en.wikipedia.org/wiki/Pascals_t...

presque 7 ans il y a

A résolu


Who knows the last digit of pi?
There is only one man who knows the last digit of pi, who is that man? Give the name of that man, who, by popular believe, can ...

presque 7 ans il y a

A résolu


Wind Chill Computation
On a windy day, a temperature of 15 degrees may feel colder, perhaps 7 degrees. The formula below calculates the "wind chill," i...

presque 7 ans il y a

A résolu


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

presque 7 ans il y a

A résolu


Sum of diagonal of a square matrix
If x = [1 2 4; 3 4 5; 5 6 7] then y should be the sum of the diagonals of the matrix y = 1 + 4 + 7 = 12

presque 7 ans il y a

A résolu


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

presque 7 ans il y a

A résolu


Rotate a Matrix by 90 degrees
Rotate a Matrix by 90 degrees Example: If the input is: X = 1 2 3 4 5 6 7 8 9 ...

presque 7 ans il y a

A résolu


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...

presque 7 ans il y a

Réponse apportée
I want to insert a groups of ones in between zeros. I want to display all the possibilities.
here's a start unique(perms([zeros(1,8),111,111]),'rows');

presque 7 ans il y a | 0

A résolu


Sorted highest to lowest?
Return 1 if the input is sorted from highest to lowest, 0 if not. Example: 1:7 -> 0 [7 5 2] -> 1

presque 7 ans il y a

A résolu


Add two numbers
Calculate the sum of two numbers. Example input = [2 3] output = 5

presque 7 ans il y a

A résolu


Area of a disk
Find the area of a disk or circle. x= radius of the disk.

presque 7 ans il y a

A résolu


Let's see how peculiar we can get
The task is to multiply two numbers. But do it in the most peculiar possible way.

presque 7 ans il y a

A résolu


We love vectorized solutions. Problem 1 : remove the row average.
Given a 2-d matrix, remove the row average from each row. Your solution MUST be vectorized. The solution will be tested for ac...

presque 7 ans il y a

A résolu


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

presque 7 ans il y a

A résolu


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

presque 7 ans il y a

A résolu


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

presque 7 ans il y a

A résolu


inner product of two vectors
inner product of two vectors

presque 7 ans il y a

A résolu


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

presque 7 ans il y a

A résolu


Create a vector
Create a vector from 0 to n by intervals of 2.

presque 7 ans il y a

Charger plus