photo

Adam


Last seen: 5日 前 2013 年からアクティブ

Followers: 1   Following: 0

Professional Interests: Signal Processing, OOP, Matlab GUI programming, Machine Learning

統計

All
MATLAB Answers

21 質問
1,882 回答

Cody

0 問題
42 解答

ランク
39
of 300,763

評判
5,327

コントリビューション
21 質問
1,882 回答

回答採用率
71.43%

獲得投票数
875

ランク
 of 21,082

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク
12,334
of 170,923

コントリビューション
0 問題
42 解答

スコア
500

バッジ数
2

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Community Group Solver
  • Ace
  • First Review
  • Revival Level 2
  • 36 Month Streak
  • Thankful Level 3
  • Knowledgeable Level 5
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

質問


Illegal use of reserved keyword "classdef" when trying to continue debugging
I've been getting this odd error a few times recently that I never had before when trying to use F5 to continue debugging my cod...

8日 前 | 0 件の回答 | 0

0

回答

質問


UIAxes toolbar very slow just to turn off
I'm trying to create a uifigure containing a component (panel containing gridlayouts, axes, etc) that was built in AppDesigner. ...

3ヶ月 前 | 1 件の回答 | 0

1

回答

質問


Adding external files to Matlab Compiler app in R2025a
Unfortunately I had to upgrade to R2025a recently and have been hugely disppointed by what seems like a massive regression in th...

5ヶ月 前 | 2 件の回答 | 2

2

回答

解決済み


Apply a function array to an array of numbers
It is required to apply a cell array of functions to a numerical array, where the functions accept only scalar inputs. Exampl...

約1年 前

解決済み


Function composition
Write a function that accepts two function handles f and g and returns the composition h. That is, h = (f o g)(x) = f(g(x)) ...

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


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

約1年 前

解決済み


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 to use d...

約1年 前

解決済み


Find max
Find the maximum value of a given vector or matrix.

約1年 前

解決済み


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

約1年 前

解決済み


Inner product of two vectors
Find the inner product of two vectors.

約1年 前

解決済み


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

約1年 前

回答済み
SOM neighbor connections raw data
>> net.layers{:} ans = Neural Network Layer name: 'Layer' dimensions: [8 8] distanceFcn: 'linkdist' distanceParam: ...

約2年 前 | 0

| 採用済み

回答済み
Changing colors of outlier markers, median and whiskers in a box and whisker plot
I'm surprised boxplot has no option to return any graphics handles like most plotting functions do, but you can do the ugly appr...

約2年 前 | 1

回答済み
What frustrates you about MATLAB? #2
Having used it more extensively in the last number of months, my biggest frustrations still surround the App designer. It has i...

約2年 前 | 3

回答済み
add text above the legend on pie chart
I can't run your code to test, but lgd1.Title.String = "percentage values" should work (instead of passing it into the call to...

2年以上 前 | 0

回答済み
Matrix array in a strange format
It's a sparse array so that is standard. You can use: full( kio ) to convert to a full (standard) matrix if you wish, though ...

2年以上 前 | 1

| 採用済み

質問


Is it possible to disable parent node selection in a uitree?
Is there any way to disable certain nodes in a uitree from being selectable? In particular I have a situation similar to that s...

2年以上 前 | 1 件の回答 | 0

1

回答

回答済み
How to not use a for loop
function I = intMidpointScalar(f, a, b, n) j = 0.5:n; h = (b-a)/n; x = a + j * h; I = sum( h * f(x) );...

3年以上 前 | 0

| 採用済み

回答済み
Iteration is not stopping. Can you please help thanks.
Which iteration is not finishing? You have a nested for loop and two while loops in that code. I assume you mean one of the wh...

4年弱 前 | 0

質問


Change to code formatting behaviour in editor in R2021b?
Does anyone know if this is a change in default formatting behaviour for indents and formatting behaviour or whether I am just m...

約4年 前 | 2 件の回答 | 6

2

回答

回答済み
Removing "head" entry from doubly linked list
Unless I am totally misunderstanding (possible given my initial confusion in my comment) your class works fine. What isn't fine...

約4年 前 | 1

| 採用済み

回答済み
how to find the count of unique values of a column in a array?
doc histcounts should give you the number of each of the elements in your array, so long as you parameterise it correctly if yo...

約4年 前 | 0

| 採用済み

回答済み
how to create a vector with known indices numbers
result = vector( positions ); will give you this, if what you mean is you want the numbers from those positions of vector rathe...

約4年 前 | 0

| 採用済み

回答済み
what does k = 0:25.5:255 function means
doc colon It means create an array starting at 0, incrementing by 25.5 each time, with a maximum value of 255. Easiest way to ...

約4年 前 | 0

| 採用済み

回答済み
Resize and sum a matrix
If you have the Image Processing Toolbox you can use blockproc something like the following: array2 = blockproc( array1, [n n],...

5年弱 前 | 2

| 採用済み

回答済み
Whats the difference when using [ ] and : ?
key = [1 2 3 4 5 6 7 8 9 10]; res = reshape( key, 2, [] ); would give res = [ 1 3 5 7 9 2 4 6 8 10 ]; The [] indica...

約5年 前 | 1

回答済み
Get row and column of the closest value of a matrix from a variable
If you are using an up to date version of Matlab (scanning the release notes I think R2019a or later for the particular syntax o...

6年弱 前 | 0

回答済み
How to round the decimal values?
ceil( 0.7954 * 1000 ) / 1000 It should also be noted though that many seemingly 'round' decimal numbers cannot be perfectly rep...

6年弱 前 | 0

さらに読み込む