Forcing a scalar to be represented as a 1x1 vector

15 Ansichten (letzte 30 Tage)
Jack Kirby
Jack Kirby am 23 Jan. 2021
Beantwortet: dpb am 23 Jan. 2021
Is it possible to force a scalar to be represented in vector form? The purpose for this is to encode a vector in json format. If a vector has size 1 I would like it to still encode to json as a vector and not a scalar.
In the example below variables 'a' and 'b' encode to json as intended but I would like 'c' to encode as '[4]' and not '4'.
a = [1, 2];
b = 3;
c = [4];
jsonencode(a) % ans = '[1,2]'
jsonencode(b) % ans = '3'
jsonencode(c) % ans = '4'

Akzeptierte Antwort

dpb
dpb am 23 Jan. 2021
By the table in the documentation,
>> jsonencode({c})
ans =
'[4]'

Weitere Antworten (0)

Produkte


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by