Borrar filtros
Borrar filtros

How do I make it calculate the variable maxK inbetween both input arguments?

1 visualización (últimos 30 días)
How do I make it calculate the variable maxK in between both input arguments:
clear;
close all;
clc;
N = input('Gamemode [4/5/6+]: ');
maxK = (N^2 + 5*N + 6) / 2; % <======= This variable, so it can be used in the K input request
K = input(['Starting pieces [max.' maxK ']: ']);

Respuesta aceptada

Kamil Antos
Kamil Antos el 16 de Dic. de 2019
input([sprintf('Starting pieces [max.%i]: ', maxK)])

Más respuestas (1)

Steven Lord
Steven Lord el 16 de Dic. de 2019
If you're using release R2016b or later of MATLAB, you can use string. If you're using release R2017a or later you can define the string arrays that make up most of your message using double quotes.
K = input("Starting pieces [max." + maxK + "]: ");

Categorías

Más información sobre Tables en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by