Community Profile

photo

Riley


Last seen: 2 years ago Active since 2021

code and code

Statistics

All
  • MATLAB Central Treasure Hunt Finisher
  • Solver
  • Knowledgeable Level 1
  • Thankful Level 1
  • First Answer

View badges

Content Feed

View by

Solved


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

3 years ago

Solved


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

3 years ago

Solved


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.

3 years ago

Solved


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

3 years ago

Solved


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

3 years ago

Solved


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

3 years ago

Solved


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

3 years ago

Answered
Inverse Cumulative distribution function
You can use function ksdensity.

3 years ago | 0

Solved


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

3 years ago

Solved


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

3 years ago

Solved


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

3 years ago

Solved


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

3 years ago

Answered
matlab 2021b installed but not working
Uninstall MATLAB and delete the installation file thoroughtly. Then install it again.

3 years ago | 0

Answered
How can I plot the discrete points of two arrays?
Read about function plot.

3 years ago | 1

| accepted

Answered
Mathlab loops questıons about new starters
clear clc str = input('Enter name:','s') ; N = input('Enter N:') ; for i=1:N disp(str); end Try this. But as a starte...

3 years ago | 1

| accepted

Answered
Help me find the index value for first minimum value in a matrix.
A=[ 34 67 78 88 4 15 23 67 78 56 3 2 24 67]; flag=0; for i=1:length(A)-1 if flag==0&&A(i+1)<A(i) flag=1; ...

3 years ago | 0

Question


How do I find cluster center of each cluster gained from Spectral Clustering?
Hi, I am using Spectral Clustering for data analysis recently and I found that Spectral Clustering function built in MATLAB only...

3 years ago | 1 answer | 0

1

answer