error using linspace: input must be scalars
18 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Heera
le 8 Déc 2020
Réponse apportée : SALINI BALASUBARAMANIUM
le 28 Mar 2022
clear all;
table = readtable ('data_part1.xlsx', 'Range', 'A1:E13')
sigma = table. (3) (1:12);
energy = table. (4) (1:12);
C12 = 4 * energy .* sigma.^12;
C6 = 4 * energy .* sigma.^6;
r = linspace (sigma * 0.95, sigma * 2.5, 12)
data has been imported from an excel spreadsheet hence the references, unsure of how to get rid of this error message on the last line of code? (0.95 and 2.5 are my min and max respectively)
0 commentaires
Réponse acceptée
Cris LaPierre
le 8 Déc 2020
You define sigma as a vector (12 numbers). In linspace, your input is sigma multiplied by 0.95 or 2.5. This only scales the values in your vector. The inputs are still vectors. However, they must be scalars (one number).
% Valid syntax
linspace(0,5,10)
% Incorrect syntax
linspace([0:5],[20:25],12)
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Tables dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!