photo

Giovanni Testa


Last seen: 1 month ago Active since 2024

Followers: 0   Following: 0

Statistics

All
  • Solver

View badges

Feeds

View by

Solved


Back to basics - mean of corner elements of a matrix
Calculate the mean of corner elements of a matrix. e.g. a=[1 2 3; 4 5 6; 7 8 9;] Mean = (1+3+7+9)/4 = 5

4 months ago

Solved


Back to basics 8 - Matrix Diagonals
Covering some basic topics I haven't seen elsewhere on Cody. Given an input vector of numbers, output a square array with the...

4 months ago

Solved


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

4 months ago

Question


Problema con plot di dati, ricevo il messaggio "In workspace belonging to" e la compilazione non procede
Ho scritto un codice in cui viene creata una figure tramite un plot e successivamente dentro un ciclo for vado a modificare YDat...

4 months ago | 1 answer | 0

1

answer

Solved


Sum of adjacent elements in a vector
Given a vector v, return a vector s containting the sum of every two adjacent elements in the vector. Every element s(i) cont...

4 months ago