Vinny - MATLAB Central
photo

Vinny


University of South Florida Tampa

自 2016 起处于活动状态

Followers: 0   Following: 0

消息

统计学

MATLAB AnswersFrom 03/16 to 03/25Use left and right arrows to move selectionFrom 03/16Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

11 个提问
0 个回答

排名
122,827
of 297,695

声誉
0

贡献数
11 个提问
0 个回答

回答接受率
27.27%

收到投票数
0

排名
 of 20,466

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 159,351

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


Multiply each number in a matrix by the diagonal number of a given row using a for loop
I have this matrix here a=[2 -5 7;1 1 3;4 5 12]; I need to multiply each of the numbers in the row by the diagonal of tha...

9 years 前 | 1 个回答 | 0

1

个回答

提问


Find the sum of the non perimeter elements of a matrix using a for loop
I have this matrix B=[-3 4 7;9 11 -13;-17 19 -23;-29 31 37;39 41 47] and I need to find the sum of the non perimeter elem...

9 years 前 | 3 个回答 | 0

3

个回答

提问


Sum of numbers from a notepad file
I have a notepad file with these numbers 1 2 3 4 5 6 7 8 12 8 7 6 5 4 3 2 1 14 I need to take the sum of all the numbe...

9 years 前 | 2 个回答 | 0

2

个回答

提问


Sorted vector changing dimensions
I have two vectors here a=[4 2 1;9 3 5] a=[9 8;7 6;5 4] I'm sorting them from left to right using this code m=num...

9 years 前 | 1 个回答 | 0

1

个回答

提问


Matrix sorting, smallest to biggest
So I need to sort a matrix from smallest to biggest going from left to right, with multiple rows. I was told in a previous threa...

9 years 前 | 2 个回答 | 0

2

个回答

提问


Sorting a matrix from smallest to biggest left to right
I made this code here for a matrix that was only 1 row. Now that I have matrices with multiple rows I don't know how to make it ...

9 years 前 | 2 个回答 | 0

2

个回答

提问


Help with finding the min/max for 3 matrices
I have a function mfile here function[maxm]=my_matrix(a) n=size(a); maxm=-inf; minm=inf; for i=1:1:n(1); for j=1:1...

9 years 前 | 1 个回答 | 0

1

个回答

提问


Finding the standard deviation of a matrix
I'm trying to find the standard deviation of a matrix, but I'm getting a different answer when I do it myself than what matlab g...

9 years 前 | 2 个回答 | 0

2

个回答

提问


Find the summation of the outer elements of a rectangular matrix
Using this matrix a=[2 -3 1 0;5 7 1 -4;9 -6 0 2] I need to find the sum of all the outer numbers in this matrix using lo...

9 years 前 | 2 个回答 | 0

2

个回答

提问


Help finding the min and max of a matrix without using min/max commands
I'm having trouble trying to find the min and max of this matrix. So far I can only get it to display the min which is -12, but ...

9 years 前 | 2 个回答 | 0

2

个回答

提问


How to find value of an infinite series using for-end loops
Write a program to determine values from the following infinite series. f(x)=sqrt(x)/42+1/2x+1/3x^2+1/4x^3+1/5x^4+1/6x^5......

9 years 前 | 1 个回答 | 0

1

个回答