Community Profile

photo

Steven Gangano


Last seen: casi 2 años hace Con actividad desde 2022

Followers: 0   Following: 0

Estadísticas

  • Thankful Level 2

Ver insignias

Feeds

Ver por

Pregunta


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

casi 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

alrededor de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

alrededor de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

alrededor de 2 años hace | 3 respuestas | 0

3

respuestas

Pregunta


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

alrededor de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

alrededor de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

alrededor de 2 años hace | 2 respuestas | 0

2

respuestas