Azzera filtri
Azzera filtri

vec2mat function unrecognized by Cody

8 visualizzazioni (ultimi 30 giorni)
Hello,
I tried to solve the "Create times-tables" problem in Matlab Cody and it appears that the vec2mat function is not recognized, although the ind2sub function works fine.
This is my solution (verified in Matlab):
function m = timestables(n)
m = zeros(n);
element = 1:n^2;
[i,j] = ind2sub(size(m),element);
x = i.*j;
m = vec2mat(x,n)
Does anyone encountered the same problem? Why doesn't Cody support this function (which is not toolbox-related)?

Risposta accettata

Dishant Arora
Dishant Arora il 19 Feb 2014
vec2mat is defined in Communication system toolbox and cody doesn't recognize toolbox functions.
  1 Commento
Agent Cooper
Agent Cooper il 19 Feb 2014
Dishant,
Looks like I was wrong when I thought that vec2mat isn't a toolbox function. Thank you for the information.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Spline Postprocessing in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by