Community Profile

photo

edward holt


Last seen: 3年弱 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

All
  • Thankful Level 1
  • Solver
  • Knowledgeable Level 2
  • First Answer

バッジを表示

Feeds

表示方法

解決済み


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

約4年 前

解決済み


Return area of square
Side of square=input=a Area=output=b

約4年 前

解決済み


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

約4年 前

解決済み


Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...

約4年 前

解決済み


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

約4年 前

質問


Row & Column Wise Normalisation
Objective: Normalise a matrix such that all rows and columns sum to 1. The below normalises each column, then row and repeats u...

約4年 前 | 1 件の回答 | 1

1

回答

解決済み


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

約4年 前

解決済み


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

約4年 前

解決済み


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

約4年 前

解決済み


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

約4年 前

解決済み


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

約4年 前

解決済み


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

約4年 前

解決済み


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

約4年 前

解決済み


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

約4年 前

解決済み


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

約4年 前

解決済み


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

約4年 前

解決済み


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

約4年 前

解決済み


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

約4年 前

解決済み


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

約4年 前

回答済み
How to set x axis using xticks?
xlim([0 24]) Sets the limits of the axis to run from 0 - 24 xticks([]) governs where there are tick marks.

約4年 前 | 0

回答済み
how to create a function, and make the function to take items as its only parameter
The below should do it. x = str2double(inputdlg('number of items purchased:')) % asks for the number of items purchased, and c...

約4年 前 | 0

| 採用済み

回答済み
What is suitable script for the question?
Short answer: script 1. x = linspace(0,pi,100) creates a vector with 100 values in between 0 and pi, so when plotting y and z...

約4年 前 | 0

回答済み
How to calculate and store the sum of different column combinations in a matrix?
A similar question has been asked here. Finding out which combination yields the maximum can be done without summing all possib...

約4年 前 | 0

| 採用済み

回答済み
How to find similar indices in two vector
There is probably a better (faster) way than this. But it seems to work. A = randi(1,10000,1); B = zeros(60000,1); %inserti...

約4年 前 | 0

回答済み
Setting up and plotting functions
It's rough, but I'm also quite new to Matlab. You answered your own question - you do need to define x, a, b and c. x needs to...

約4年 前 | 0

| 採用済み

質問


Identifying significantly different pairs from multcompare output
Data attached. Using R2019a I am trying to identify from the 'c' output of multcompare the significantly different pairs (i.e....

約4年 前 | 1 件の回答 | 0

1

回答