photo

lightroman


Aktiv seit 2017

Followers: 0   Following: 0

Statistik

All
MATLAB Answers

11 Fragen
0 Antworten

Cody

0 Probleme
17 Lösungen

RANG
40.874
of 300.863

REPUTATION
1

BEITRÄGE
11 Fragen
0 Antworten

ANTWORTZUSTIMMUNG
72.73%

ERHALTENE STIMMEN
1

RANG
 of 21.100

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
27.732
of 171.413

BEITRÄGE
0 Probleme
17 Lösungen

PUNKTESTAND
190

ANZAHL DER ABZEICHEN
1

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Solver
  • Thankful Level 3

Abzeichen anzeigen

Feeds

Anzeigen nach

Gelöst


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

fast 8 Jahre vor

Frage


Search matrix for array of values and place results into another
I am attempting to search mat A for values B. Then take the indices where B is located in A and access the corresponding indices...

fast 8 Jahre vor | 2 Antworten | 0

2

Antworten

Gelöst


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

etwa 8 Jahre vor

Gelöst


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

etwa 8 Jahre vor

Gelöst


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.

etwa 8 Jahre vor

Gelöst


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

etwa 8 Jahre vor

Gelöst


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

etwa 8 Jahre vor

Gelöst


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

etwa 8 Jahre vor

Gelöst


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

etwa 8 Jahre vor

Gelöst


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

etwa 8 Jahre vor

Gelöst


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

etwa 8 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 8 Jahre vor

Gelöst


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

etwa 8 Jahre vor

Gelöst


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

etwa 8 Jahre vor

Gelöst


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

etwa 8 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 8 Jahre vor

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

etwa 8 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 8 Jahre vor

Frage


mat ops to locate values and place into new matrix
column width should be length of longest row of 9s. I can do this by loops and placing the values into a preallocated zeroes ...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


print numeric array as list with commas
I cant figure out how to print a = 1:10 as 1,2,3,4,5,6,7,8,9,10

etwa 8 Jahre vor | 2 Antworten | 1

2

Antworten

Frage


Print message about which loop has been entered, after finishing for loop
I have 4 if statements in a for loop. I need to know which if statement was entered. Can be just one or all 4. after the for loo...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Reshape cell array into a matrix
I am struggling to reshape this cell array into a matrix of # cell arrays by max length of cell array. This ex 4x7 matrix. The r...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


search through an array for patterns and put into cell arrays.
Looking to search through a large array of integers and find patterns of up to 1-10 ( can be 1 or 1 2 3 or 1 2 3 4 5 6 .. 10, et...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Search for a number pattern in an array
Without using strfind is there a way to search for a pattern of less than 4 ones in a row? and if there are can i set them all t...

etwa 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Search array for largest value of the desired format
I have an array, data, I need to search through it to find 1000 , 2000 , 3000 , ... n As many as exist in the array. 1000 wil...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


how to reduce time grabbing values from indices of cell arrays?
I currently do the operation below and wanted to try to do this without a loop since n is very large. value = 1:5; re...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Fastest way to access another matrix for all nonzero rows
Hi I am new to MATLAB and I have been looking on here for 20 minutes. I am able to do this with multiple lines of code using ...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Split array into cell arrays of different size
I have an array that I am trying to divide into different lengths arrays. The array is 750000 values or so long so I needed an e...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort