Effacer les filtres
Effacer les filtres

make mx1 size array with m number of inputs

3 vues (au cours des 30 derniers jours)
Madhav
Madhav le 9 Sep 2022
Commenté : Rik le 9 Sep 2022
clc
clear
close all
zai=[ 0.0 0.4 0.2 0.3 0.4]; %I want to change the size of this array based on inputting the size value and I will give the n number of values.
beta=0:0.005:4;
for i=1:length(zai)
for j=1:length(beta)
d(i,j)=(1/((1-beta(j)^2)^2+(2*beta(j)*zai(i))^2))^0.5;
end

Réponses (1)

Chunru
Chunru le 9 Sep 2022
%zai=[ 0.0 0.4 0.2 0.3 0.4]; %I want to change the size of this array based on inputting the size value and I will give the n number of values.
str = input("Enter N numbers: ", "s");
zai = sscanf(str, '%f');
beta=0:0.005:4;
for i=1:length(zai)
for j=1:length(beta)
d(i,j)=(1/((1-beta(j)^2)^2+(2*beta(j)*zai(i))^2))^0.5;
end
  2 commentaires
Madhav
Madhav le 9 Sep 2022
FIrst , I want to input size of array, for example 5 and i want to give values. FOr for exampke 0, 0.2, 0.3, 0.4, 0.5 like this.
Rik
Rik le 9 Sep 2022
Did you try this code? Did you notice how it might be possible to use these functions for what you describe?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by