Meaning of specific MATLAB instruction num2strSimple way to repeat a String in javaWhat does %w(array) mean?How do I check if a string contains a specific word?Ukkonen's suffix tree algorithm in plain Englishxkcd style graphs in MATLABSyntax Highlighting While Running MATLAB via Terminal?Vectorize string concatenation in matlabHow do I get the Matlab data point labels correct?Reshape function in matlab and imagesHow does String substring work in Swift
Machine Learning Golf: Multiplication
How did שְׁלֹמֹה (shlomo) become Solomon?
What/Where usage English vs Japanese
Did Stalin kill all Soviet officers involved in the Winter War?
PhD: When to quit and move on?
Minimizing medical costs with HSA
Is it possible that Curiosity measured its own methane or failed doing the spectrometry?
Isn't "Dave's protocol" good if only the database, and not the code, is leaked?
What do you call the angle of the direction of an airplane?
Park the computer
How many spells does my Bard 6/Wizard 1 know?
What units are kpts?
Does a multiclassed wizard start with a spellbook?
Are there advantages in writing by hand over typing out a story?
How to supply water to a coastal desert town with no rain and no freshwater aquifers?
Chess problem: Make a crossword in 3 moves
Should I cheat if the majority does it?
Using Sed to add counter to keyword
Why would a propeller have blades of different lengths?
Do I need to be legally qualified to install a Hive smart thermostat?
Can 4 Joy cons connect to the same Switch?
How come having a Deathly Hallow is not a big deal?
Explain how 'Sharing the burden' puzzle from Professor Layton and the Miracle Mask should be solved
How can I effectively map a multi-level dungeon?
Meaning of specific MATLAB instruction num2str
Simple way to repeat a String in javaWhat does %w(array) mean?How do I check if a string contains a specific word?Ukkonen's suffix tree algorithm in plain Englishxkcd style graphs in MATLABSyntax Highlighting While Running MATLAB via Terminal?Vectorize string concatenation in matlabHow do I get the Matlab data point labels correct?Reshape function in matlab and imagesHow does String substring work in Swift
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have been sent some complete MATLAB script. It appears that author of this code has made a specific instruction using num2str
and set_param
.
What is the purpose of the following line:
['[' num2str(operating_point) ']']
I am interested specially of an intention of using '['
as syntax.
set_param(system_block_name, operating_point_name,...
['[' num2str(operating_point) ']']
string matlab type-conversion string-concatenation
add a comment |
I have been sent some complete MATLAB script. It appears that author of this code has made a specific instruction using num2str
and set_param
.
What is the purpose of the following line:
['[' num2str(operating_point) ']']
I am interested specially of an intention of using '['
as syntax.
set_param(system_block_name, operating_point_name,...
['[' num2str(operating_point) ']']
string matlab type-conversion string-concatenation
5
Have you looked at the help mathworks.com/help/matlab/ref/num2str.html and tried using it in MATLAB?
– Navan
Mar 25 at 18:58
2
Did you try creating a numeric variableoperating_point
and and executing that first line of code?
– beaker
Mar 25 at 19:23
Yes, yes. I do understand what doesnum2str
. I was wondering why the author of that code used braces in apostrophe'['
and']'
, because I think it's unnecessary.
– Pomaranczka
Mar 26 at 21:24
Then you didn't actually try the command, or you would see what the single-quotes do. I wasn't trying to get you to runnum2str
, I was trying to get you to execute the part you had the actual question about.
– beaker
Mar 27 at 14:23
add a comment |
I have been sent some complete MATLAB script. It appears that author of this code has made a specific instruction using num2str
and set_param
.
What is the purpose of the following line:
['[' num2str(operating_point) ']']
I am interested specially of an intention of using '['
as syntax.
set_param(system_block_name, operating_point_name,...
['[' num2str(operating_point) ']']
string matlab type-conversion string-concatenation
I have been sent some complete MATLAB script. It appears that author of this code has made a specific instruction using num2str
and set_param
.
What is the purpose of the following line:
['[' num2str(operating_point) ']']
I am interested specially of an intention of using '['
as syntax.
set_param(system_block_name, operating_point_name,...
['[' num2str(operating_point) ']']
string matlab type-conversion string-concatenation
string matlab type-conversion string-concatenation
edited Mar 26 at 8:08
SecretAgentMan
1,4429 silver badges24 bronze badges
1,4429 silver badges24 bronze badges
asked Mar 25 at 18:55
PomaranczkaPomaranczka
31 bronze badge
31 bronze badge
5
Have you looked at the help mathworks.com/help/matlab/ref/num2str.html and tried using it in MATLAB?
– Navan
Mar 25 at 18:58
2
Did you try creating a numeric variableoperating_point
and and executing that first line of code?
– beaker
Mar 25 at 19:23
Yes, yes. I do understand what doesnum2str
. I was wondering why the author of that code used braces in apostrophe'['
and']'
, because I think it's unnecessary.
– Pomaranczka
Mar 26 at 21:24
Then you didn't actually try the command, or you would see what the single-quotes do. I wasn't trying to get you to runnum2str
, I was trying to get you to execute the part you had the actual question about.
– beaker
Mar 27 at 14:23
add a comment |
5
Have you looked at the help mathworks.com/help/matlab/ref/num2str.html and tried using it in MATLAB?
– Navan
Mar 25 at 18:58
2
Did you try creating a numeric variableoperating_point
and and executing that first line of code?
– beaker
Mar 25 at 19:23
Yes, yes. I do understand what doesnum2str
. I was wondering why the author of that code used braces in apostrophe'['
and']'
, because I think it's unnecessary.
– Pomaranczka
Mar 26 at 21:24
Then you didn't actually try the command, or you would see what the single-quotes do. I wasn't trying to get you to runnum2str
, I was trying to get you to execute the part you had the actual question about.
– beaker
Mar 27 at 14:23
5
5
Have you looked at the help mathworks.com/help/matlab/ref/num2str.html and tried using it in MATLAB?
– Navan
Mar 25 at 18:58
Have you looked at the help mathworks.com/help/matlab/ref/num2str.html and tried using it in MATLAB?
– Navan
Mar 25 at 18:58
2
2
Did you try creating a numeric variable
operating_point
and and executing that first line of code?– beaker
Mar 25 at 19:23
Did you try creating a numeric variable
operating_point
and and executing that first line of code?– beaker
Mar 25 at 19:23
Yes, yes. I do understand what does
num2str
. I was wondering why the author of that code used braces in apostrophe '['
and ']'
, because I think it's unnecessary.– Pomaranczka
Mar 26 at 21:24
Yes, yes. I do understand what does
num2str
. I was wondering why the author of that code used braces in apostrophe '['
and ']'
, because I think it's unnecessary.– Pomaranczka
Mar 26 at 21:24
Then you didn't actually try the command, or you would see what the single-quotes do. I wasn't trying to get you to run
num2str
, I was trying to get you to execute the part you had the actual question about.– beaker
Mar 27 at 14:23
Then you didn't actually try the command, or you would see what the single-quotes do. I wasn't trying to get you to run
num2str
, I was trying to get you to execute the part you had the actual question about.– beaker
Mar 27 at 14:23
add a comment |
1 Answer
1
active
oldest
votes
In MATLAB rectangular braces []
create vector/matrix.
By default, horizontal vector of strings concatenated into 1 string:
['str1','str2'] % produces str1str2
So
['[',']'] % will print []
num2str()
converts number into string:
a=10;
my_str = ['[',num2str(a),']'] % will assign my_str = '[10]'
set_param()
is some function that gets 3 parameters, where 3rd one is your string
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55344727%2fmeaning-of-specific-matlab-instruction-num2str%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
In MATLAB rectangular braces []
create vector/matrix.
By default, horizontal vector of strings concatenated into 1 string:
['str1','str2'] % produces str1str2
So
['[',']'] % will print []
num2str()
converts number into string:
a=10;
my_str = ['[',num2str(a),']'] % will assign my_str = '[10]'
set_param()
is some function that gets 3 parameters, where 3rd one is your string
add a comment |
In MATLAB rectangular braces []
create vector/matrix.
By default, horizontal vector of strings concatenated into 1 string:
['str1','str2'] % produces str1str2
So
['[',']'] % will print []
num2str()
converts number into string:
a=10;
my_str = ['[',num2str(a),']'] % will assign my_str = '[10]'
set_param()
is some function that gets 3 parameters, where 3rd one is your string
add a comment |
In MATLAB rectangular braces []
create vector/matrix.
By default, horizontal vector of strings concatenated into 1 string:
['str1','str2'] % produces str1str2
So
['[',']'] % will print []
num2str()
converts number into string:
a=10;
my_str = ['[',num2str(a),']'] % will assign my_str = '[10]'
set_param()
is some function that gets 3 parameters, where 3rd one is your string
In MATLAB rectangular braces []
create vector/matrix.
By default, horizontal vector of strings concatenated into 1 string:
['str1','str2'] % produces str1str2
So
['[',']'] % will print []
num2str()
converts number into string:
a=10;
my_str = ['[',num2str(a),']'] % will assign my_str = '[10]'
set_param()
is some function that gets 3 parameters, where 3rd one is your string
answered Mar 25 at 20:42
AlBaZAlBaZ
262 bronze badges
262 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55344727%2fmeaning-of-specific-matlab-instruction-num2str%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
5
Have you looked at the help mathworks.com/help/matlab/ref/num2str.html and tried using it in MATLAB?
– Navan
Mar 25 at 18:58
2
Did you try creating a numeric variable
operating_point
and and executing that first line of code?– beaker
Mar 25 at 19:23
Yes, yes. I do understand what does
num2str
. I was wondering why the author of that code used braces in apostrophe'['
and']'
, because I think it's unnecessary.– Pomaranczka
Mar 26 at 21:24
Then you didn't actually try the command, or you would see what the single-quotes do. I wasn't trying to get you to run
num2str
, I was trying to get you to execute the part you had the actual question about.– beaker
Mar 27 at 14:23