Community Profile

photo

Riley


Last seen: 2年以上 前 2021 年からアクティブ

Followers: 0   Following: 0

code and code

統計

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

バッジを表示

Feeds

表示方法

解決済み


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年 前

解決済み


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

約3年 前

解決済み


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年 前

解決済み


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年 前

解決済み


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

約3年 前

解決済み


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年 前

解決済み


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

約3年 前

回答済み
Inverse Cumulative distribution function
You can use function ksdensity.

約3年 前 | 0

解決済み


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年 前

解決済み


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年 前

解決済み


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年 前

解決済み


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

約3年 前

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

約3年 前 | 0

回答済み
How can I plot the discrete points of two arrays?
Read about function plot.

約3年 前 | 1

| 採用済み

回答済み
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年 前 | 1

| 採用済み

回答済み
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年 前 | 0

質問


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年 前 | 1 件の回答 | 0

1

回答