Azzera filtri
Azzera filtri

Getting error "Subscript indices must either be real positive integers or logical'

1 visualizzazione (ultimi 30 giorni)
I am getting this error when I run the following commands. Help needed at the earliest.
v=[1 -2 3];
n=norm(v);

Risposta accettata

madhan ravi
madhan ravi il 2 Gen 2019
Modificato: madhan ravi il 2 Gen 2019
It might happen that you have a variable called norm so try the below:
clear all
% or
clear norm
% or
clear norm global
v=[1 -2 3];
n=norm(v);
Also
which norm -all % what shows up

Più risposte (0)

Categorie

Scopri di più su Matrices and Arrays 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