Steven Gangano
Followers: 0 Following: 0
Statistiques
7 Questions
0 Réponses
RANG
200 634
of 295 527
RÉPUTATION
0
CONTRIBUTIONS
7 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
28.57%
VOTES REÇUS
0
RANG
of 20 242
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 154 057
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
How do I create a nested for loop to find consecutive numbers in a matrix? See example below.
A = [0 1 0 0 1 0 0 1 0 0 0 0 1 0 1 0 0 1 0 1 1 1 1 0 0 1 1 0 1 1 1 0 1 1 0 1 1 0 0 1 ...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
Given a matrix, how can I slice a matrix given the input parameters are the number of rows and number of columns? See example.
function [result3Dmatrix] = imgCut(origImgMatrix, numRows, numCols ) For example if matrix is origImgMatrix = [2 4 6 8 ...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
How do I crop out a certain part within a matrix of numbers?
This example is a small matrix, but I would like to crop out part of this matrix. The part I want to crop out is: a(2,3:5) and ...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
I have 2 columns in a matrix. 1st column has the dates. 2nd column has the values. How do I grab all values from 2nd column associated with its date from the 1st column??
I have a much larger data set, but this is just a smaller sample size example of what I would like to do. I want to grab all va...
plus de 2 ans il y a | 3 réponses | 0
3
réponsesQuestion
How do I double the size of a given matrix?
A = [ 1 2 3 4 ] I want to double the size of matrix A by adding a duplicate of row 1 underneath it. And also ad...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
A(I): index out of bounds; value 6 out of bound 5. How to fix this error?
%I'm trying to subtract the 2nd element from the 1st element %The answer should be: 4-2=2, 6-4=2, 8-6=2, 10-8=2 a = [2:2:10];...
presque 3 ans il y a | 1 réponse | 0
1
réponseQuestion
How to access the 3rd element in a for loop?
investment = 1000; interestRate = 0.01; months =[1:12]; for month = months investment = investment * (1 + interestRate);...
presque 3 ans il y a | 2 réponses | 0