Simone Frauenfelder
2017년부터 활동
Followers: 0 Following: 0
Feeds
질문
How to save variables from output of function as vector?
function [ A, B] = GetText(filename) fid = fopen(filename,'r'); x = textscan(fid,'%n%s','headerlines',1); ...
7년 초과 전 | 답변 수: 2 | 0
2
답변질문
How to save variables from function output to workspace?
function [ A, B] = GetText(filename) fid = fopen(filename,'r'); x = textscan(fid,'%n%s','headerlines',1); fclose(...
7년 초과 전 | 답변 수: 1 | 0
1
답변질문
Why is this loop not ending?
function [ number ] = SmallestNumber(n,a,b) % Smallest natural number function % inputs: % n = maximum value % a =...
7년 초과 전 | 답변 수: 2 | 0